Feign feign.FeignException$NotFound: status 404 reading有几种情况:
第一种情况是远程调用接口和调用的方法路径不一致,特别是远程接口路径没有写全;
第二种情况是远程类controller使用的@controller,返回的是视图层页面跳转,在SpringBoot中我们基本上都是使用@RestController,他返回的是数据。远程调用应该使用@RestController。
第三种就是我遇到这种的就是在远程调用的时候尽量不要使用路径传参,我不清楚是不是版本的文问题我用的openfeign 是2.2.0RELEASE,用路径传参就会报Feign feign.FeignException$NotFound: status 404 reading这个错误,调用不到远程接口。
下面是我的调用过程:
使用路径传参:
远程接口
远程controller方法:
修改使用远程Controller方法参数注解为@RequestParam注解传参
修改使用远程接口方法参数注解为@RequestParam注解传参
然后在运行测试结果正常调用
文章来源地址https://www.toymoban.com/news/detail-582702.html文章来源:https://www.toymoban.com/news/detail-582702.html
到了这里,关于Feign feign.FeignException$NotFound: status 404 reading的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!