我在下面使用来访问App1在App2中设置的会话数据。
在 App1 中:
ServletContext sctx = ((HttpServletRequest) request).getSession().getServletContext();
String testStr = (String) sctx.getAttribute("attr");
if(testStr == null){
testStr = "test";
sctx.setAttribute("attr", testStr);
}
在 App2 中
我得到的会话值如下。
ServletContext sctx = ((HttpServletRequest) request).getSession().getServletContext().getContext("/app1");
String testStr = (String) sctx.getAttribute("attr");
System.out.println("the value which set in first app: " + testStr);
其实我的App2 will be in cluster environment
。在这种情况下,App1是否也应该在集群环境中?我的 App2 是一个 Web 应用程序,它暴露的 Web 服务很少,并且不包含任何 UI。App1 和 App2 之间不得有任何直接通信。App1 必须在其启动时在应用程序范围内设置一些值,稍后 App2 应在需要时访问应用程序范围内的值。谢谢
我在集群环境中有什么问题吗?我的方法正确吗?
谢谢!