我想断开与 jsp 页面的连接,为此,我尝试了以下操作:
在我的 JSP (accueil_mobile.jsp) 中,我得到了这个:
<form action="b" method="POST">
<input type="submit" value="Deconnexion" />
</form>
b 指的是一个 SERVLET,其 post 的方法如下:
public static final String VUE = "/accueil_mobile.jsp" ;
.
.
.
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.getSession().invalidate();
response.sendRedirect("accueil.xhtml");
this.getServletContext().getRequestDispatcher(VUE).forward(request, response) ;
}
现在我希望这会使会话无效并将我重定向到accueil.xhtml
,但它所做的只是无限地加载页面。这是为什么 ?
谢谢。