Update to Spring Security 5.0.0.RC1

Fixes gh-904
This commit is contained in:
Rob Winch
2017-10-30 17:17:12 -05:00
parent 03f6611e04
commit f3f18432ee
5 changed files with 5 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser("user").password("password").roles("USER");
.withUser("user").password("{noop}password").roles("USER");
}
// @formatter:on
}