12

我有一个在 Tomcat 上运行的典型 Spring MVC。将系统切换为在 HTTPS 上运行(在纯 HTTP 下一切正常)后,登录停止工作。原因是 Spring 的SecurityContextHolder.getContext().getAuthentication()对象在使用null之后变成了RedirectView

我已经搜索过答案,我发现的唯一一个建议在 bean 设置中redirectHttp10Compatible设置属性falseviewResolver这没有帮助。

我还检查了在整个重定向过程中,我的会话 id 保持不变并且连接保持安全,即它不是 http 和 https 之间更改的问题(至少据我所知),反之亦然。

可能是什么问题呢?

<beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd">


  <http auto-config="true">
    <intercept-url pattern="/**" requires-channel="https" />

    <intercept-url pattern="/index*" access="ROLE_USER"/>


    <intercept-url pattern="/dashboard*" access="ROLE_USER" requires-channel="https"/>  

    <intercept-url pattern="/login*" access="ROLE_GUEST, ROLE_ANONYMOUS, ROLE_USER"/>
    <intercept-url pattern="/signin*" access="ROLE_GUEST, ROLE_ANONYMOUS, ROLE_USER"/>
    <intercept-url pattern="/signup*" access="ROLE_GUEST, ROLE_ANONYMOUS, ROLE_USER"/>    


    <form-login login-page="/home" 
                default-target-url="/home" 
                authentication-failure-url="/home?authentication_error=true"
                authentication-success-handler-ref="redefineTargetURL"
    />


    <anonymous username="guest" granted-authority="ROLE_GUEST" key="anonymousKey"/>
    <logout invalidate-session="true" logout-success-url="/logout?message=Logout Successful" />

    </http>



<authentication-manager alias="authenticationManager">
    <authentication-provider user-service-ref="userDetailsService" />
</authentication-manager>


<beans:bean id="redefineTargetURL" class="com.groupskeed.common.RedefineTargetURL" />
<beans:bean id="userDetailsService" class="com.groupskeed.security.UserDetailsServiceImpl" />

4

1 回答 1

30

SecurityContextHolder.getContext().getAuthentication()重定向后变为空是正确的,因为它是线程绑定的。但它应该从会话中重新填充。因此尝试跟踪SPRING_SECURITY_CONTEXT会话中的属性。下面是一些示例代码来获得一个想法:

HttpSession session = request.getSession(true);
System.out.println(session.getAttribute("SPRING_SECURITY_CONTEXT"));

在 Spring Security 文档中,有一个关于 HTTPS/HTTP 切换如何破坏会话的部分,也许在其中某处暗示了您的问题。 http://static.springsource.org/spring-security/site/faq.html#d0e223

上面的常见问题解答导致检查会话在您的应用程序中是如何处理的。我可能会开始研究 AuthenticationSuccessHandler 实现。(如果您愿意,可以将其发布到您的问题中。)

有关如何在 Web 应用程序中处理安全上下文的更多详细信息,请参阅以下内容:(第 5.4 节 Web 应用程序中的身份验证):http ://static.springsource.org/spring-security/site/docs/3.0.x/reference /technical-overview.html

于 2013-06-11T09:17:02.243 回答