Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击按钮时,有没有办法为用户重置(清除)会话?
关于什么
session.invalidate();
会话对象的 invalidate 方法用于丢弃会话并释放存储为属性的任何对象。这种方法有助于减少内存开销并实现性能的提高。使用 session.invalidate() 方法显式删除或使会话无效始终是一个好习惯。
或者
session.removeAttribute(String)
会话对象的 removeAttribute 方法用于从会话中删除属性和值。