我正在使用GAE(版本1.9.14)和模块(https://cloud.google.com/appengine/docs/java/modules/)
我相信每个模块都有自己的会话。任何人都知道如何跨GAE模块(即跨域)与SessionScoped共享ManagedBean
即。从moduleA和userSession对象进行身份验证的用户已设置。
@ManagedBean(name = "userSession")
@SessionScoped
public class UserSession...
当用户切换到moduleB时,moduleB应该能够检索由moduleA设置的userSession对象。
p / s:我注意到从一个模块浏览到另一个模块时,设置了相同的cooie但是使用了差异JESSIONID。
任何帮助?