HTTP Status 405 - Request method 'GET' not supported
Posted 流年拓荒者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP Status 405 - Request method 'GET' not supported相关的知识,希望对你有一定的参考价值。
springMVC框架中出现这个问题看看web.xml是否配置HiddenHttpMethodFilter
ctrl +shift+T查看这个方法
配置:
<!-- 配置org.springframework.web.filter.HiddenHttpMethodFilter:可以把post请求转为delete或putt请求 -->
<filter>
<filter-name>HiddenHttpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HiddenHttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
以上是关于HTTP Status 405 - Request method 'GET' not supported的主要内容,如果未能解决你的问题,请参考以下文章
Restful风格,PUT修改功能请求,表单中存在文件报错-HTTP Status 405 - Request method 'POST' not supported
跪求!!!用jsoup提交表单时报错 HTTP error fetching URL,Status=405
HTTP Status 405 - HTTP method POST is not supported by this URL
Js 跨域CORS报错 Response for preflight has invalid HTTP status code 405
转 Js 跨域CORS报错 Response for preflight has invalid HTTP status code 405