Fix for Security snapshots

pull/2/merge
Dave Syer 12 years ago
parent b761fa8ede
commit 4923717524

@ -130,12 +130,10 @@ public class SecurityAutoConfiguration {
if (this.security.getBasic().isEnabled()) {
String[] paths = getSecurePaths();
HttpConfiguration matcher = http.requestMatchers().antMatchers(paths);
matcher.authenticationEntryPoint(entryPoint()).httpBasic()
.authenticationEntryPoint(entryPoint()).and().anonymous()
.disable();
matcher.authorizeUrls().anyRequest()
http.exceptionHandling().authenticationEntryPoint(entryPoint()).and()
.requestMatchers().antMatchers(paths);
http.httpBasic().and().anonymous().disable();
http.authorizeUrls().anyRequest()
.hasRole(this.security.getBasic().getRole());
}

Loading…
Cancel
Save