前言:
Feign在Ribbon的基础上进行了升级,采用接口+注解的方式更为简单和接近我们编程风格,而得到广泛使用。笔者在学习Feign时,发现网上的使用介绍不够详细,以下做一个详细点的笔记。
JDK版本:1.8
Spring Boot 版本:2.1.11.RELEASE
Spring Cloud版本:Greenwich.SR4
Feign版本:1.4.7.RELEASE
项目结构:
- baseservice #基础服务,存放所有服务的Feign接口,也作为其他服务模块的依赖包
- userservice-one #用户服务1 ,既是Feign接口的提供者也是Feign接口的消费者
- userservice-two #用户服务2,既是Feign接口的提供者也是Feign接口的消费者
userservice-one与userservice-two之间通过baseservice的Feign接口相互调用
如图:
baseservice服务
1、添加Feign依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
2、SpringApplication添加开启FeignClient注解
@EnableFeignClients(basePackages = {"com.springcloudexercise.baseservice.FeignInterface"})
注:basePackages设置为Feign接口所在的文件夹路径
3、编写FeignConfig(使用的默认)
4、开放其他模块的Feign接口
USERSERVICE1
USERSERVICE2
userservice-one服务
1、添加baseservice依赖
<dependency>
<groupId>com.springcloudexercise</groupId>
<artifactId>baseservice</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
2、SpringApplication添加开启FeignClient注解
@EnableFeignClients(basePackages = {"com.springcloudexercise.baseservice.FeignInterface"})
3、添加提供Feign接口的方法,及调用USERSERVICE2的Feign方法
userservice-two服务
1、同userservice-one
2、同userservice-one
3、添加提供Feign接口的方法,及调用USERSERVICE1的Feign方法
启动两个服务测试
1、userservice-one调用userservice-two
2、userservice-two调用userservice-one
代码地址:
https://gitee.com/flywithtime/baseservice
https://gitee.com/flywithtime/userservice-one
https://gitee.com/flywithtime/userservice-two