我有Spring安装的Spring MVC应用程序设置使用CAS。我还将Liferay Portal 5.2.3配置为使用CAS。
如何在app_1中创建建议app_2验证身份验证的链接......
我有弹簧过滤链
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
和
<security:http entry-point-ref="casAuthenticationEntryPoint" auto-config="true" >
<security:intercept-url pattern="/*/secure/**" access="ROLE_USER" />
<security:custom-filter position="CAS_FILTER" ref="casAuthenticationFilter" />
<security:anonymous enabled="false"/>
</security:http>
如果我将app_1中的所有网址指向app_2中的安全路径,则需要进行身份验证(用户被重定向到登录页面),因此这不起作用。