我有两个网络应用程序。
申请1 -
struts.xml中
<result name="store" type="redirectAction">
<param name="actionName">storeslist</param>
<param name="namespace"></param>
<param name="tok">${token}</param>
</result>
申请2
struts.xml中
<action class="com.aa.store" name="storeslist" >
<result>/WEB-INF/jsp/store.jsp</result>
</action>
现在我需要实现这个
Application1包含一个链接'store',点击此链接,它必须转到Application2的商店页面
怎么做?
我在tomcat <Valve className="org.apache.catalina.authenticator.SingleSignOn"/>
中尝试了server.xml
,但没有效果。
emptySessionPath="true"
的{{1}}中的 <connector...>
仍无效。
答案 0 :(得分:0)
据我所知,目前没有绝对链接不起作用,因为Struts2总是在http://server.domain.tld/appname
前面加上所有链接。如果你有解决方案,请发一个答案,因为我自己会对此感兴趣。我的解决方法可以在这里找到:Deploying Struts2 Application without ContextPath