Make it clearer that unconfigured WebSecConfigAdapter matches any path

Closes gh-5046
This commit is contained in:
Andy Wilkinson 2016-07-19 12:07:45 +01:00
parent e1950e34c6
commit a22071724a

View File

@ -2033,7 +2033,11 @@ The basic features you get out of the box in a web application are:
All of the above can be switched on and off or modified using external properties
(`+security.*+`). To override the access rules without changing any other auto-configured
features add a `@Bean` of type `WebSecurityConfigurerAdapter` with
`@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)`.
`@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)` and configure it to meet your needs.
NOTE: By default, a `WebSecurityConfigurerAdapter` will match any path. If you don't want
to completely override Spring Boot's auto-configured access rules, your adapter must
explicitly configure the paths that you do want to override.