使用 JSP/Servlet 使浏览器关闭时的会话失效

发布于 2024-12-06 00:37:18 字数 37 浏览 2 评论 0原文

如何使用 JSP/Servlet 使浏览器关闭时的会话失效?

How can I invalidate a session on browser close using JSP/Servlets?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

噩梦成真你也成魔 2024-12-13 00:37:18

不能这样做。设置会话的超时,在指定的不活动时间后它将自动失效。

You can't do that. Set session's timeout, it will be automatically invlidated after a specific amount of time of inactivity.

故事灯 2024-12-13 00:37:18

你可以这样做,但这似乎是一件坏事。

将函数绑定到窗口的卸载事件并进行ajax调用以使会话无效。

使用 jQuery,您可以这样做:

     $(window).unload(function()
        {
            alert("Yar, the light be fadin.");
        });

当然,用您想要进行的 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:

     $(window).unload(function()
        {
            alert("Yar, the light be fadin.");
        });

Of course, replace the alert with the ajax call you want to make.

Setting the session timeout seems like a better option.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文