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

@@ -27,6 +27,6 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
public class SecurityConfig {
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication().withUser("user").password("password").roles("USER");
auth.inMemoryAuthentication().withUser("user").password("{noop}password").roles("USER");
}
}