Add /webjars/** to default list of unsecured resources

Fixes gh-2460
This commit is contained in:
Dave Syer
2016-06-14 10:31:09 +01:00
parent 9e8beb7323
commit a3b29b0e42
3 changed files with 4 additions and 4 deletions

View File

@@ -2181,7 +2181,7 @@ The basic features you get out of the box in a web application are:
* An `AuthenticationManager` bean with in-memory store and a single user (see
`SecurityProperties.User` for the properties of the user).
* Ignored (insecure) paths for common static resource locations (`+/css/**+`, `+/js/**+`,
`+/images/**+` and `+**/favicon.ico+`).
`+/images/**+`, `+/webjars/**+` and `+**/favicon.ico+`).
* HTTP Basic security for all other endpoints.
* Security events published to Spring's `ApplicationEventPublisher` (successful and
unsuccessful authentication and access denied).