spring cloud feign微服务调用报错Request method 'POST' not supported

spring cloud feign微服务调用报错Request method 'POST' not supported

请求方式@GetMapping("")
传参形式@RequestBody
异常问题:org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported
解决方式:
pom中引入

1 <dependency>
2      <groupId>io.github.openfeign</groupId>
3      <artifactId>feign-httpclient</artifactId>
4  </dependency>

 

posted @ 2020-07-21 14:33  代码幽灵  阅读(4378)  评论(0)    收藏  举报