[org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported]
时间: 2023-11-03 17:02:08 浏览: 103
spring cloud feign不支持@RequestBody+ RequestMethod.GET报错的解决方法
5星 · 资源好评率100%
这个错误提示说明你的请求方法不被支持。根据提供的代码和引用内容,你在前端使用了Post方法提交表单,但是后台接口使用了@PostMapping注解来映射该请求。@PostMapping注解等同于@RequestMapping(method = RequestMethod.POST),它只支持Post请求。所以当你使用Get方法访问该接口时,就会报错"Request method 'GET' not supported"。为了解决这个问题,你可以将前端的请求方法改为Post,或者将后台的注解改为@GetMapping,这样就可以支持Get请求了。
阅读全文