SpringMVC提示: " HTTP Status 405 – Method Not Allowed " Request method 'GET' not supported

在SpringMVC学习过程中:******

*****做修改模块时,点击超链接(提交)就会提示:HTTP Status 405 – Method Not Allowed
Type Status Report 如下图所示:在这里插入图片描述
原因很简单:由于你使用的提交方式不一致,导致报错,如下图代码块所示:
XxxController类:
SpringMVC提示:
xxx.jsp页面:
SpringMVC提示:
这个错误,是自己不细心的问题了,jsp页面提交方法是post,然后controller的方法应该也为method = RequestMethod.POST。

有其中一个使用了Get,就会提示Request method ‘GET’ not supported
将两边method的提交方法都为POST或为GET应该就可以解决了,建议使用POST哦~~~

你可能感兴趣的:(异常,java,spring,post/get提交方式)