eclipse添加servlet导致HTTP Status 405错误的解决

eclipse添加servlet导致HTTP Status 405错误的解决

访问servlet时出现错误:
HTTP Status 405
HTTP method POST is not supported by this URL

上网查了好多文章。
有人说是sendRedirect()的问题,在语句后应加上return;
但我的问题总解决不了。
最后发现,由于我的servlet是eclipse添加的,doPost(),doGet(),service()函数中都有super.doPost(),super.doGet(),super.service()函数。
删除后,则不会报错了。

你可能感兴趣的:(eclipse添加servlet导致HTTP Status 405错误的解决)