SpringSecurity3.X--Cas client 配置之配置session-management遇到的问题
关于“SpringSecurity3.X--Cas client 配置”可以参看SpringSecurity3.X--Cas client 配置
<sec:http entry-point-ref="casProcessingFilterEntryPoint" access-denied-page="/access/denied.do" access-decision-manager-ref="accessDecisionManager" auto-config="false"> ………………………… ?<sec:concurrent-session-control max-sessions="1" exception-if-maximum-exceeded="false" expired-url="/access/same_login.do" /> </sec:http>?也就是说,相同的用户在第二次登录后,那么第一次登录就会失效,需要重新获取认证。
?
在使用SpringSecurity3.X时,我尝试配置如下:
<http entry-point-ref="casEntryPoint" access-decision-manager-ref="accessDecisionManager"access-denied-page="/access/denied.do" auto-config="false"> ………………………… ? <session-management> <concurrency-control max-sessions="1" expired-url="/access/same_login.do" error-if-maximum-exceeded="false" /> </session-management> <custom-filter position="CAS_FILTER" ref="casFilter" /><custom-filter ref="requestSingleLogoutFilter" before="LOGOUT_FILTER" /><custom-filter ref="singleLogoutFilter" before="CAS_FILTER" /></http>
?结果发现并没有起作用,查看了一下源码,基本上搞清楚了原因,下面是session管理相关的时序图:
从图中可以看出,验证的关键就是ConcurrentSessionControlStrategy
?
CasAuthenticationFilter继承于AbstractAuthenticationProcessingFilter,可是后者默认使用的不是ConcurrentSessionControlStrategy,而是NullAuthenticatedSessionStrategy,该类什么都没做,所以,上面的配置根本不会起作用,
那么要想使session-management真正起作用,我们该如何做呢?
?
首先,必须为CasAuthenticationFilter注入一个ConcurrentSessionControlStrategy,
然后,ConcurrentSessionControlStrategy和ConcurrentSessionFilter又需要使用相同的SessionRegistryImpl,所以我们只需要将这些bean显示声明即可。
参看了一下SpringSecurity3.X的官方帮助文件,修改配置如下:
<http entry-point-ref="casEntryPoint" access-decision-manager-ref="accessDecisionManager"access-denied-page="/access/denied.do" auto-config="false">…………………………<session-managementsession-authentication-strategy-ref="sessionAuthenticationStrategy" /><custom-filter position="CONCURRENT_SESSION_FILTER" ref="concurrencyFilter" /><custom-filter position="CAS_FILTER" ref="casFilter" /><custom-filter ref="requestSingleLogoutFilter" before="LOGOUT_FILTER" /><custom-filter ref="singleLogoutFilter" before="CAS_FILTER" /></http><beans:bean id="sessionAuthenticationStrategy"/><beans:property name="maximumSessions" value="1" /></beans:bean><beans:bean id="sessionRegistry"/><beans:bean id="concurrencyFilter"ref="sessionRegistry" /><beans:property name="expiredUrl" value="/session-expired.htm" /></beans:bean><!-- cas 认证过滤器 --><beans:bean id="casFilter"ref="authenticationManager" /><beans:property name="authenticationFailureHandler"ref="authenticationFailureHandler" /><beans:property name="authenticationSuccessHandler"ref="authenticationSuccessHandler" /><beans:property name="filterProcessesUrl" value="/j_spring_cas_security_check.do" /><beans:property name="sessionAuthenticationStrategy"ref="sessionAuthenticationStrategy" /></beans:bean>?
?
ok。
1 楼 lovefly_zero 2012-07-13 我运用了你的session-management,但是我有多个不同的子系统,导致我注销时不能同时注销其它子系统,何解?