关于Spring Cloud Feign的一些记录!

Posted gilbertbright

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Spring Cloud Feign的一些记录!相关的知识,希望对你有一定的参考价值。

  学习Spring Cloud Feign过程中,相关资料都会反复强调:微服务调用的话(@FeignClient)  客户端方法的返回值和服务端方法的返回值还有方法名之类的都是要求一致的!

关于方法名是否一致经过验证,其实不是必须的,只要路径映射一直就可以了!

feign客户端:

    @Autowired
    private EurekaServiceFeign eurekaServiceFeign;

    @GetMapping("/hello/{name}")
    @ResponseBody
    @HystrixCommand(fallbackMethod = "helloFallback") 
    public String hello(@PathVariable String name){
        return eurekaServiceFeign.hello(name);
    }

服务端:

    @GetMapping("/hello/{name}")
    public String home(@PathVariable String name) {
        return "hi " + name + ",i am from port:" + port;
    }

最终只要@GetMapping一致即可!

以上是关于关于Spring Cloud Feign的一些记录!的主要内容,如果未能解决你的问题,请参考以下文章

spring cloud feign client 上传文件遇到问题记录

spring cloud 服务A调用服务B自定义token消失,记录

Spring Cloud Feign 源码分析 - FeignClientFactoryBean

Spring Cloud feign使用

声明式HTTP客户端 - Spring Cloud OpenFeign

Spring-Cloud之Feign