默认会话过期超时?

发布于 2024-12-05 04:16:34 字数 102 浏览 1 评论 0 原文

默认情况下,当您关闭浏览器时,JSESSIONID cookie就会过期,但是关联的HttpSession在服务器端真正有效的时间是多长?

By default the JSESSIONID cookie is expired when you close the browser, but how long is the associated HttpSession really valid on the server side?

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

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

发布评论

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

评论(1

凉栀 2024-12-12 04:16:34

大多数容器默认为 30 分钟,您可以通过 Web 应用的 web.xml 中的 进行配置。

<session-config>
    <session-timeout>10</session-timeout>
</session-config>

上面的示例将服务器端会话超时更改为 10 分钟。换句话说,当客户端超过 10 分钟没有与服务器交互时(即使浏览器保持打开那么长时间),那么会话将在服务器端过期。任何下一个请求都将创建一个新会话。

另请参阅:

It defaults to 30 minutes on most containers which you can configure by <session-config> in your webapp's web.xml.

<session-config>
    <session-timeout>10</session-timeout>
</session-config>

The above example will change the server side session timeout to 10 minutes. So in other words, when the client do not interact with the server for more than 10 minutes (even though the browser is kept open that long), then the session will expire on the server side. Any next request will create a new session.

See also:

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