微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 不支持请求方法’POST’

根据 Spring Documentation here

While HTTP defines these four methods,HTML only supports two: GET and POST. Fortunately,there are two possible workarounds: you can either use JavaScript to do your PUT or DELETE,or simply do a POST with the ‘real’ method as an additional parameter (modeled as a hidden input field in an HTML form).

他们已经完成了后者,并且可以使用以下spring MVC表单标签来实现:

<form:form method="delete">
   <input type="submit" value="Delete"/>
</form:form>

问题是,当我单击“删除”时,我的页面会抛出以下错误

HTTP Status 405 - Request method 'POST' not supported

我将org.springframework.web的调试级别更改为debug并找到以下消息:

DEBUG AnnotationMethodHandlerExceptionResolver - Resolving exception from handler [foo.bar.MessageForm@da9246]:
org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported

我使用RestClient和DELETE方法,并按预期调用方法.我在这做错了什么?

解决方法

您需要在web.xml中配置HiddenHttpMethodFilter

细节可以找到here

原文地址:https://www.jb51.cc/java/128878.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐