从第二个应用程序访问spring security

时间:2012-07-24 09:35:13

标签: spring security

我有两个应用程序,每个应用程序都位于自己的服务器上。它们都使用Spring安全性和标准设置。 我需要通过第二个应用程序访问第一个应用程序的问题。登录第二个应用程序时,我需要发送密码并登录到第一个应用程序。 有人可以提供样品或小贴士吗?谢谢。 我在两个应用程序中的spring-security.xml:

<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.0.xsd
    http://www.springframework.org/schema/security 
    http://www.springframework.org/schema/security/spring-security-3.1.xsd">

<http pattern="/favicon.ico" security="none" />

<http auto-config="true">
    <intercept-url pattern="/**" access="ROLE_ADMIN"/>
</http>

<authentication-manager>
    <authentication-provider>
        <user-service>
            <user name="hey" password="there" authorities="ROLE_ADMIN" />
        </user-service>
    </authentication-provider>
</authentication-manager>

1 个答案:

答案 0 :(得分:2)

您应该使用CAS而不是尝试访问或传递用户/传递应用程序。

请参阅此link以了解如何在此类情况下使用CAS。