This section covers the minimum setup for how to use Spring Security with Spring Boot.
Note | |
---|---|
The completed application can be found at samples/boot/helloworld For your convenience, you can download a minimal Spring Boot + Spring Security application by clicking here. |
You can now run the Spring Boot application by using the Maven Plugin’s run
goal.
The following example shows how to do so (and the beginning of the output from doing so):
Example 8.1. Running Spring Boot Application
$ ./mvn spring-boot:run ... INFO 23689 --- [ restartedMain] .s.s.UserDetailsServiceAutoConfiguration : Using generated security password: 8e557245-73e2-4286-969a-ff57fe326336 ...
Spring Boot automatically:
Filter
as a bean named springSecurityFilterChain
.
This bean is responsible for all the security (protecting the application URLs, validating submitted username and passwords, redirecting to the log in form, and so on) within your application.
UserDetailsService
bean with a username of user
and a randomly generated password that is logged to the console.
Filter
with a bean named springSecurityFilterChain
with the Servlet container for every request.
Spring Boot is not configuring much, but it does a lot. A summary of the features follows:
user
and a password that is logged to the console to authenticate with form-based authentication (in the preceding example, the password is 8e557245-73e2-4286-969a-ff57fe326336
)
Security Header integration
Integrate with the following Servlet API methods: