Spring Security 4.0.0.RC1 发布,此版本解决了 40 个 tickets。值得关注的改进如下:
1 2 3 4 5 6 7 | @EnableWebSecuritypublic class SecurityConfig { @Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser( "user" ).password( "password" ).roles( "USER" );
}
}
|
GA 版本将会在 2015 年 1 月份发布! |