Merge branch '2.0.x'

This commit is contained in:
Stephane Nicoll 2018-05-26 12:44:50 +02:00
commit 1bb53ff44c
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ following example:
@Override
protected void configure(HttpSecurity http) throws Exception {
http.requestMatcher(EndpointRequest.toAnyEndpoint()).authorizeRequests()
.anyRequest().permitAll()
.anyRequest().permitAll();
}
}