Springboot使用put、delete請求報錯405的處理
Springboot使用put、delete請求報錯
SpringBoot給我們自動配置好瞭HiddenHttpMethodFilter,但是最近發現好像用不瞭,我用的是SpringBoot版本是2.2.2,默認配置被改成瞭false,也就是關閉瞭自動配置,不知道sprongboot什麼鬼,坑!!!
There was an unexpected error (type=Method Not Allowed, status=405).
Request method 'POST' not supported
org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported
要把springboot配置yml文件改成
spring: mvc: hiddenmethod: filter: enabled: true
Springboot錯誤提示405狀態
一、錯誤提示405狀態截圖
二、405狀態的原因
SpringBoot的自動配置中默認是關閉spring.mvc.hiddenmethod.filter 過濾器的,所以當我們提交的數據是PUT、POST、DELETE方式時,我們使用的 _method 並不起作用。
spring.mvc.hiddenmethod.filter 自動配置:
三、解決方法
在 Spring Boot 的配置文件 application.properties 中將 hiddenmethod.filter 過濾器設置為啟用即可。
spring.mvc.hiddenmethod.filter.enabled=true
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- SpringBoot中的PUT和Delete請求使用
- SpringBoot之如何正確、安全的關閉服務
- springmvc使用REST出現:Request method 'PUT' not supported問題
- 深入淺析SpringBoot自動配置原理
- Java經典面試題匯總:Spring Boot