HTTP Status 405 - HTTP method POST is not supported by this URL
写一个Servlet页面跳转时,出现了HTTP Status 405 - HTTP method POST is not supported by this URL 这个错误。
我的servlet的跳转代码如下:
request.getRequestDispatcher("FindByIdServlet?id="+commentPostId).forward(request, response);
在Servlet中使用这种方式跳转到另一个Servlet时就会出现如题的错误,改用sendRedirect(),即可解决此问题了:
response.sendRedirect("FindByIdServlet?id="+commentPostId);
redirect和forward的区别:
1) redirect 方式
response.sendRedirect("test.jsp");
页面的路径是相对路径。sendRedirect可以将页面跳转到任何页面,不一定局限于本web应用中,如:
response.sendRedirect("http://www.baidu.com";);
跳转后浏览器地址栏变化,会变成你跳转到的页面的地址。
这种方式要传值出去的话,只能在url中带parameter或者放在session中,无法使用request.setAttribute来传递。
2) forward方式
RequestDispatcher dispatcher = request.getRequestDispatcher("/a.jsp");
dispatcher .forward(request, response);
页面的路径是相对路径。forward方式只能跳转到本web应用中的页面上。
跳转后浏览器地址栏不会变化。
使用这种方式跳转,传值可以使用三种方法:url中带parameter,session,request.setAttribute
来源: http://www.programbbs.com/bbs/view23-14330-1.htm