问题分析:【报错】 Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported]提示:不支持Post请求,客户段使用 FeignClient 端用的是Get请求,服务端用的也为Get请求,为什么会报错不支持Post请求呢? 如吧客户端和服务端都改成Post请求后,就解决问题了。或使用...
传参形式@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>...
异常Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported] 原因 使用了get请求 通过feign 发起远程调用,因为按照规范来写时,get请求的参数列表种不能写@requestbody ,写普通对象不能写其...