码迷,mamicode.com
首页 > Web开发 > 详细

HTTP Status 405 - HTTP method POST is not supported by this URL另外一种原因

时间:2017-05-08 16:00:43      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:class   解决办法   其他   http   request   throw   port   stat   解决   

看了网上的其他解决办法,发现自己的问题并不是那些原因造成的;经过排查还是找到了原因:

@WebServlet("/Ce")
public class Ce extends HttpServlet {
    
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

    }

    
    protected void doPost(HttpServletRequest request, HttpServletResponse response,int id)
            throws ServletException, IOException {
        doGet(request, response);
    }

}

我在doPost后面多写了一个参数int id,可能是在调程序的时候加上去的吧,粗心的我啊,希望大家不要像我一样的粗心!

HTTP Status 405 - HTTP method POST is not supported by this URL另外一种原因

标签:class   解决办法   其他   http   request   throw   port   stat   解决   

原文地址:http://www.cnblogs.com/zhouzhang/p/6824996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!