注销页面后,页面将重定向到登录页面,登录用户ID ...并且密码已被清除。程序在带有servlet的jsp中实现,并且还会终止会话
答案 0 :(得分:0)
如果您单击“注销”按钮,该操作将转到特定的servlet并转发到登录页面,请使用此代码进行注销操作。如果有这个帮助你可以使用它。
public class Logout extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.getSession().invalidate();
response.sendRedirect(request.getContextPath() + "/Login.html");
}
}