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>