实际上我已经在 jboss 5.x 服务器上部署了两个耳朵 test.ear 和 test1.ear。test.ear 在这个 jsp 中包含 index.jsp 页面,我设置了一个会话变量,如:
session.setAttribute("Initiated","true")
从 index.jsp 我将控制转发到 test1.ear 中的 action(struts2 action class) 类。但是当我从动作类中检索变量时,它是空的
Map session = (Map)ActionContext.getContext().getSession();
String sessionExistence=(String)session.get("Initialted");
那么我如何将会话变量从 test.ear 的 jsp 共享到 test1.ear 中的 struts2 动作类。