关于浏览器会话的问题
在 Java Web 应用程序中,如果我正在浏览一个站点,然后打开另一个 IE 8 窗口* 并转到同一站点,是否有办法检测新请求是否来自同一台计算机的另一个窗口。
基本上我的要求是提醒用户他们无法打开同一站点的另一个窗口。
*在 IE 8 中,所有窗口共享同一个会话。因此 request.getsession() 将始终在所有窗口中返回相同的 ID。
In a java web app, if I am browsing a site and then I open another IE 8 window* and go to the same site, is there a way to detect that the new request has come from another window from the same machine.
Basically my requirement is to alert the user that they cannot open another window with the same site.
*In IE 8 all windows share the same session. Hence request.getsession() would always return the same ID across all the windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码项目上有一篇关于这个确切问题的精彩文章。并非 100% 可能检测到这一点,但可以解决它。
There is a great article about this exact question over at The Code Project. It's not 100% possible to detect this, but it is possible to work around it.