org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported
时间: 2023-10-20 17:31:16 浏览: 182
当你看到org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported的错误消息时,它意味着你正在尝试使用PUT请求方法,但该方法在你的代码中并未被支持。
这通常是因为你的代码中没有相应的处理程序方法来处理PUT请求。在你的代码中,你使用了@PostMapping注释来映射HTTP POST请求到特定的处理程序方法。但是,你需要使用@RequestMapping注释来映射HTTP PUT请求到相应的处理程序方法,或者使用@PutMapping注释作为快捷方式来映射HTTP PUT请求。
简而言之,你需要在你的代码中添加一个处理程序方法,并使用@RequestMapping或@PutMapping注释将该方法映射到HTTP PUT请求。这样,当你使用PUT请求时,就不会再出现org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported的错误了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET‘ not supported](https://blog.csdn.net/weixin_45157411/article/details/123665632)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* [Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET‘ not...](https://blog.csdn.net/qq_44347175/article/details/125697957)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文