我是Spring Security 3的新手。我正在使用角色让用户登录。
我想根据该用户的角色将用户重定向到其他页面,我了解到我必须为该用户实现AuthenticationSuccessHandler
,但是朝该方向的一些示例会有所帮助。
提前致谢,
维维克
最佳答案
您可以执行以下操作:
public class Test implements AuthenticationSuccessHandler {
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) {
Set<String> roles = AuthorityUtils.authorityListToSet(authentication.getAuthorities());
if (roles.contains("ROLE_USER") {
response.sendRedirect("/userpage");
}
}
}
在XML配置中添加以下内容:
<bean id="authenticationFilter" class="YOUR_AUTH_FILTER_HERE">
<!-- There might be more properties here, depending on your auth filter!! -->
<property name="authenticationSuccessHandler" ref="successHandler" />
</bean>
<bean id="successHandler" class="Test"/>