每个浏览器都会打开一个新的 HTTPSession
我正在开发一个基于 Web 的应用程序,其中包含 JSP 和 servlet。在我的应用程序中,我将一些对象绑定到会话,如以下代码——
HttpSession session = p_req.getSession();
session.setAttribute(DOWNLOAD_With_WARNINGS, downloadMap);
稍后我使用 session.getAttribute 检索它们。我想知道每次打开新浏览器时是否都会打开一个新的 HTTP 会话。因为,如果我在一个浏览器实例中使用某个值执行 setAttribute
操作,那么当我使用另一个浏览器实例执行 getAttribute
操作时,该更改就会可见。
I am working on a webbased application which has JSP and servlets. In my application, I am binding some objects to sessions like the following code --
HttpSession session = p_req.getSession();
session.setAttribute(DOWNLOAD_With_WARNINGS, downloadMap);
Later I am retrieving them using session.getAttribute. I would like to know if every time I open a new browser does it open a new HTTP session. Because , if I do a setAttribute
with some value in one browser instance, that change is visible when I do a getAttribute
using the other browser instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该行为取决于浏览器。
IE 6 - 每次打开新的浏览器窗口时,您都会有一个新的会话。但是,如果您使用“文件”-“新建”菜单打开一个新窗口,它将使用相同的会话。
所有其他浏览器 - 打开新的浏览器窗口将使用现有会话。
可以肯定的是,请清除一次 cookie。
The behaviour depends on browsers.
IE 6 - Everytime you open a new browser window, you'll have a new session. But if you open a new window using File - New menu, it will use the same session.
All the other browsers - Opening a new browser window will use the existing session.
To be sure, clear your cookies once.