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.
我正在尝试在 JSP-Servlets 中开发一项功能,当用户从同一浏览器的其他选项卡注销时,我需要在该功能中注销用户。
如何做到这一点?
通常,如果浏览器打开一个新选项卡,它会共享相同的会话。因此,如果会话无效,它将自动从另一个选项卡中注销用户。
我希望你有一个安全过滤器来检查用户会话是否仍然有效。如果用户会话无效,则重定向到登录屏幕。