Request method 'POST' not supported org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported
时间: 2023-08-27 10:04:43 浏览: 299
这个错误提示表明在使用RestFul风格发送PUT请求时,出现了不支持POST方法的错误。这个问题一般可以分为两类。第一类是后台代码中没有实现对PUT请求的支持,导致报错。第二类是前端代码中将请求类型设置为POST,而后台只支持GET请求,从而导致这个错误。报错信息中包含了org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported,这是由于后台代码未对POST请求进行支持。另外一种情况则是在前端的ajax请求中将请求类型设置为了POST,而后台只支持GET请求。因此,要解决这个问题,你可以检查后台代码是否实现了对PUT请求的支持,并确认前端ajax请求的类型是否正确。如果后台确实不支持PUT请求,可以尝试将前端ajax请求的类型改为GET。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [Request method ‘POST‘ not supported最新解决方式,恍然大悟!!!](https://blog.csdn.net/qq_45889221/article/details/118765553)[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^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not ...](https://blog.csdn.net/qq_45579521/article/details/130555975)[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^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supporte](https://blog.csdn.net/you23hai45/article/details/54428059)[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^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
阅读全文