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.
使用 servlet 2.3 可以在用户使用表单身份验证登录时将其注销。我知道 servlet 3.0 具有注销功能。servlet 2.3 用户应该如何注销?
只是使会话无效。
request.getSession().invalidate();
之后不要忘记发送重定向。
response.sendRedirect(request.getContextPath() + "/login.jsp");
看这里关于注销。它还解释了两者之间的区别
Servlet 3.0 HttpServletRequest.logout()
和
session.invalidate() method.