Spring Security使用外部应用程序验证多个应用程序

时间:2011-09-09 07:18:32

标签: security spring cas

我正试图建立一个中心点。

目标是拥有使用相同外部应用程序登录/注销的 N spring安全应用程序。 现在我设法使用CAS来做到这一点。但是,我不是通过所有应用程序自动登录的。

用例:
1.访问第一个应用程序
2.重定向到CAS,登录
3.重定向到登录的第一个应用程序。
4.访问第二个应用程序
5.再次,重定向到CAS登录,为什么?

我设法解决了它,将属性sendRenew添加到false:

<bean id="serviceProperties" class="org.springframework.security.cas.ServiceProperties">
    <property name="service" value="https://****/j_spring_cas_security_check"/>
    <property name="sendRenew" value="false"/>
</bean>

0 个答案:

没有答案