Merge branch '3.1.x'
This commit is contained in:
commit
ae6b1f91f6
|
@ -67,8 +67,8 @@ public class SecurityConfiguration {
|
||||||
requests.requestMatchers(EndpointRequest.toAnyEndpoint().excluding(MappingsEndpoint.class))
|
requests.requestMatchers(EndpointRequest.toAnyEndpoint().excluding(MappingsEndpoint.class))
|
||||||
.hasRole("ACTUATOR");
|
.hasRole("ACTUATOR");
|
||||||
requests.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll();
|
requests.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll();
|
||||||
requests.requestMatchers("/foo").permitAll();
|
requests.requestMatchers(new AntPathRequestMatcher("/foo")).permitAll();
|
||||||
requests.requestMatchers(new AntPathRequestMatcher("/error")).permitAll();
|
requests.requestMatchers(new MvcRequestMatcher(handlerMappingIntrospector, "/error")).permitAll();
|
||||||
requests.requestMatchers(new AntPathRequestMatcher("/**")).hasRole("USER");
|
requests.requestMatchers(new AntPathRequestMatcher("/**")).hasRole("USER");
|
||||||
});
|
});
|
||||||
http.cors(withDefaults());
|
http.cors(withDefaults());
|
||||||
|
|
Loading…
Reference in New Issue