JSP reponse.sendRedirect 多次调用的问题

   今天碰到了诡异的问题 reponse.sendRedirect 多次调用后,会不可用,就是执行了sendRedirect后(return了),没有跳转到指定的页面,而是一直停留在空白页面,不知何故。

   解决方法:

把 reponse.sendRedirect 跳转改成JS 跳转,代码如下:

out.print("<script>window.location.href='" + request.getContextPath() + "/UserAuthMessage.jsp';</script>");
        return;


你可能感兴趣的:(jsp)