使用feign发起远程调用 Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request meth

异常
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported]
在这里插入图片描述

原因
使用了get请求 通过feign 发起远程调用,因为按照规范来写时,get请求的参数列表种不能写@requestbody ,写普通对象不能写其他注解 ,为了把这个对象接受的参数传给服务端 ,此时可以用 @SpringQueryMap 传递对象数据给服务端

解决办法
在feign的接口参数类标写一个注解就可以将对象传给服务端了
@SpringQueryMap
使用feign发起远程调用 Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request meth_第1张图片

你可能感兴趣的:(使用feign发起远程调用 Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request meth)