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

Eclipse在创建dynamic web时出现HTTP method GET is not supported by this URL错误

时间:2014-07-18 14:16:22      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   

显然错误的原因是没有重写servlet的doGet方法,只是覆盖了doPost的方法。

解决的方法很简单:

1  public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException{
2         this.doPost(req, resp);
3     }

Eclipse在创建dynamic web时出现HTTP method GET is not supported by this URL错误,布布扣,bubuko.com

Eclipse在创建dynamic web时出现HTTP method GET is not supported by this URL错误

标签:style   blog   http   color   os   io   

原文地址:http://www.cnblogs.com/angus67/p/3852745.html

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