resolved [org.springframework.web.httprequestmethodnotsupportedexception: request method 'get' not supported
时间: 2023-04-25 21:02:46 浏览: 1777
spring cloud feign不支持@RequestBody+ RequestMethod.GET报错的解决方法
5星 · 资源好评率100%
这个错误提示是指请求方法不支持。具体来说,可能是你在使用 GET 请求时,服务器只支持 POST 请求,或者你在使用 POST 请求时,服务器只支持 GET 请求。解决方法是检查请求方法是否正确,并根据服务器要求进行调整。
阅读全文