rg.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported异常
时间: 2023-08-31 16:13:54 浏览: 180
java解决405 - HTTP method GET is not supported by this URL
4星 · 用户满意度95%
这个异常通常是由于请求方法不匹配导致的。根据你提供的信息,你使用的是POST方法,但是报错显示请求方法是GET不被支持。这可能是因为你的请求映射注解使用了错误的方法。在Spring Boot中,@PostMapping注解用于将HTTP POST请求映射到特定处理程序方法,而@GetMapping注解用于将HTTP GET请求映射到特定处理程序方法。所以,你需要确保你的请求映射注解与你实际使用的请求方法相匹配。如果你想使用POST方法,你应该在处理程序方法上使用@PostMapping注解,而不是@GetMapping注解。这样就能解决这个异常了。\[1\]\[2\]\[3\]
#### 引用[.reference_title]
- *1* *2* *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^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文