各位大佬好,碰到一个 feignClient ,接口定义如下,
R onMessage(@PathVariable("modelKey") String modelKey, @PathVariable("deviceNo") String deviceNo, HttpServletRequest request);
现在需要在别的服务通过 feign 调用这个接口,但是无法直接传递 request 过来,报错提示:
feign.codec.EncodeException: Error converting request body
已知接口无法更改,请问大佬们,怎么能把 request 传递过去的,或者用 webclient ,restTemplate 这种呢
|