(servlet页面跳转没有反应)

问题:页面跳转到/UserManager/LoginCLServlet,就一直没有反应,无法继续执行下去
(servlet页面跳转没有反应)

解决:


doPost()方法里面必须写成这样

正确的写法:
 public void doPost(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {

  doGet(request,response);
 }


错误的写法
public void doPost(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {

  response.setContentType("text/html");
  PrintWriter out = response.getWriter();
  out.flush();
  out.close();
 }


非常幼稚的错误:因为我前面   form  表单传值的方法 是post ,所以,传值的方法调用的是  doPost()方法,所以才会出现一直无法执行的问题。

 

关键词:用户 登陆 跳转 doPost()

 

posted @ 2017-10-13 16:00  Fannn  阅读(782)  评论(0编辑  收藏  举报