使用 JSP/Servlet 使浏览器关闭时的会话失效
如何使用 JSP/Servlet 使浏览器关闭时的会话失效?
How can I invalidate a session on browser close using JSP/Servlets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 JSP/Servlet 使浏览器关闭时的会话失效?
How can I invalidate a session on browser close using JSP/Servlets?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
你
不能
这样做。设置会话的超时
,在指定的不活动时间后它将自动失效。You
can't
do that. Set session'stimeout
, it will be automatically invlidated after a specific amount of time of inactivity.你可以这样做,但这似乎是一件坏事。
将函数绑定到窗口的卸载事件并进行ajax调用以使会话无效。
使用 jQuery,您可以这样做:
当然,用您想要进行的 ajax 调用替换警报。
设置会话超时似乎是一个更好的选择。
You can do that, but it seems like a bad thing to do.
Bind a function to the unload event of the window and make an ajax call to invalidate the session.
Using jQuery you might do this:
Of course, replace the alert with the ajax call you want to make.
Setting the session timeout seems like a better option.