HTTP Status 405 - HTTP method GET is not supported by this URL

问题概述: 借助MyEclipse直接建立了一个Servlet类,每次访问这个Servlet都能访问。可自己建立一个Servlet为什么总提示:HTTP Status 405 - HTTP method GET is not supported by this URL。的确是继承了HttpServlet,而且是重写了它的doGet()、doPost()方法(注意这两种方法一定要写)

public class SearchServlet extends HttpServlet{
  @Override
  protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  // TODO Auto-generated method stub
  super.doPost(req, resp);
  }
}

解决:问题出来蓝色那行代码,事实上我们是不需要去调用父类的doPost()方法,去掉就可以了!

posted @ 2018-06-07 15:30  牛新龙的IT技术博客  阅读(2015)  评论(0编辑  收藏  举报