Spring Security条件default-target-url

Thr*_*eaT 13 java spring spring-security

我注意到有几个问题询问这个话题.我查看了它们,我无法将它们应用到我特定的Spring设置中.我想根据用户的角色将我的登录重定向配置为有条件的.这是我到目前为止:

<http auto-config="true" use-expressions="true">
        <custom-filter ref="filterSecurityInterceptor" before="FILTER_SECURITY_INTERCEPTOR"/>
        <access-denied-handler ref="accessDeniedHandler"/>
        <form-login
            login-page="/login"
            default-target-url="/admin/index"
            authentication-failure-url="/index?error=true"
            />
        <logout logout-success-url="/index" invalidate-session="true"/>
</http>
Run Code Online (Sandbox Code Playgroud)

我认为这个问题可能与我想要做的事情在同一条线上.有人知道我怎么能申请吗?

编辑1

<bean id="authenticationProcessingFilter" class="org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter">
    <property name="authenticationManager" ref="authenticationManager" />
    <property name="authenticationSuccessHandler" ref="authenticationSuccessHandler"/>
</bean>
<bean id="authenticationSuccessHandler" class="org.springframework.security.web.authentication.SimpleUrlAuthenticationSuccessHandler">
    <property name="defaultTargetUrl" value="/login.jsp"/>
</bean>
Run Code Online (Sandbox Code Playgroud)

编辑2

目前我没有像这个例子中public class Test implements AuthenticationSuccessHandler {}所示的类.

Bor*_*hov 22

我已经测试了代码并且它有效,其中没有火箭科学

public class MySuccessHandler implements AuthenticationSuccessHandler {

    @Override
    public void onAuthenticationSuccess(HttpServletRequest request,
            HttpServletResponse response, Authentication authentication)
            throws IOException, ServletException {
        Set<String> roles = AuthorityUtils.authorityListToSet(authentication.getAuthorities());
        if (roles.contains("ROLE_ADMIN")){
            response.sendRedirect("/Admin.html");   
            return;
        }
        response.sendRedirect("/User.html");
    }    
}
Run Code Online (Sandbox Code Playgroud)

安全上下文中的更改:

<bean id="mySuccessHandler" class="my.domain.MySuccessHandler">
    </bean>

<security:form-login ... authentication-success-handler-ref="mySuccessHandler"/>
Run Code Online (Sandbox Code Playgroud)

更新如果您想使用default-target-url方法,它将同样有效,但将在您的用户首次访问登录页面时触发:

<security:form-login default-target-url="/welcome.htm" />

@Controller
public class WelcomeController {
    @RequestMapping(value = "/welcome.htm")
    protected View welcome() {

        Set<String> roles = AuthorityUtils
                .authorityListToSet(SecurityContextHolder.getContext()
                        .getAuthentication().getAuthorities());
        if (roles.contains("ROLE_ADMIN")) {
            return new RedirectView("Admin.htm");
        }
        return new RedirectView("User.htm");
    }
}
Run Code Online (Sandbox Code Playgroud)