session.invalidate() 会清除所有与会话相关的数据吗?
请解释一下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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
的文档
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
是的你是对的。另请注意,您可以使用便捷方法
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 asrequest.getSession(true)