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>