我有两个网络应用。 PuchaseProj和PayProj。我已经配置了crossContext =" true" tomcat。 现在我想在PurchaseProj中向PayProj的上下文添加一些数据。但我无法获得PayProj中的数据。我试过以下。任何帮助将不胜感激。
ServletContext siblingContext = req.getSession().getServletContext().getContext("/PurchaseProj");
req.setAttribute("requestParam", requestparam);
req.setAttribute("shippingDtls", encryptedShippingparam);
siblingContext.setAttribute("requestParam", requestparam);
siblingContext.setAttribute("shippingDtls", encryptedShippingparam);
这里我向其他上下文对象添加了2个参数。但我无法得到它。
String requestParam=(String)ctx.getAttribute("requestParam");
String shippingDtls=(String)ctx.getAttribute("shippingDtls");
这是PayProj中的代码。