session.invalidate() 会清除所有与会话相关的数据吗?

发布于 2024-12-04 19:22:41 字数 148 浏览 0 评论 0原文

请解释一下session.invalidate()的功能。当从应用程序注销时调用session.invalidate()时,它会清除所有与seesion相关的数据吗? 如果我们再次登录应用程序 request.getsession(true) 将创建一个新会话,对吗?请澄清!!!!

Please explain about the functionality of session.invalidate().When session.invalidate() is called while logging out from application will it clear all the seesion related data?
If we login to the application again request.getsession(true) will create a new session right?Please clarify!!!!!

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

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

发布评论

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

评论(2

苏璃陌 2024-12-11 19:22:41

的文档HttpServlet 表示:

public void invalidate()

使该会话无效,然后解除绑定到它的任何对象。

抛出: IllegalStateException - 如果在已经失效的会话上调用此方法

The documentation of HttpServlet says:

public void invalidate()

Invalidates this session then unbinds any objects bound to it.

Throws: IllegalStateException - if this method is called on an already invalidated session

睫毛溺水了 2024-12-11 19:22:41

是的你是对的。另请注意,您可以使用便捷方法 request.getSession() 代替(即不带任何参数),其作用与 request.getSession(true) 相同

Yes, you are right. Also note that you can use the convenience method request.getSession() instead (i.e without any parameters) That does the same as request.getSession(true)

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