我有一个在iFrame中加载的GWT应用。该应用程序使用GWTP进行客户端服务器通信。在ActionHandler实现中,注入了HttpSession Provider。
@Inject
private final Provider<HttpSession> sessionProvider;
如果在浏览器中禁用了cookie,则每次提供者调用时都会提供新 HttpSession .get()
requestProvider.get();
因此,没有机会在http会话中存储任何信息。
如何解决这个问题?
有没有办法将jsessionid添加到每个动作请求中,如果有,我如何获得jsessionid?