gpt4 book ai didi

jsp - 将 session 变量从一只耳朵传递到另一只耳朵

转载 作者:行者123 更新时间:2023-12-04 23:34:20 25 4
gpt4 key购买 nike

实际上我已经在 jboss 5.x 服务器上部署了两个耳朵 test.ear 和 test1.ear。test.ear 包含此 jsp 中的 index.jsp 页面,我设置了一个 session 变量,如:

session.setAttribute("Initiated","true") 

我从 index.jsp 将控制转发到 test1.ear 中存在的 Action (struts2 Action 类)类。但是当我从 Action 类中检索变量时,它是空的

Map session = (Map)ActionContext.getContext().getSession();
String sessionExistence=(String)session.get("Initialted");

那么我如何将 session 变量从 test.ear 的 jsp 共享到 test1.ear 中存在的 struts2 操作类。

最佳答案

您不能在不同的应用程序之间共享 session 。原因很简单,属性名称会发生​​冲突,这可能会导致重写值。

您只能在转发到另一个应用程序时随请求一起发送参数。

关于jsp - 将 session 变量从一只耳朵传递到另一只耳朵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11342772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com