SpringCloud —— Feign使用笔记

前言:

Feign在Ribbon的基础上进行了升级,采用接口+注解的方式更为简单和接近我们编程风格,而得到广泛使用。笔者在学习Feign时,发现网上的使用介绍不够详细,以下做一个详细点的笔记。
JDK版本:1.8
Spring Boot 版本:2.1.11.RELEASE
Spring Cloud版本:Greenwich.SR4
Feign版本:1.4.7.RELEASE

项目结构:

  1. baseservice   #基础服务,存放所有服务的Feign接口,也作为其他服务模块的依赖包
  2. userservice-one   #用户服务1 ,既是Feign接口的提供者也是Feign接口的消费者
  3. 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接口所在的文件夹路径
SpringApplication添加开启FeignClient注解
3、编写FeignConfig(使用的默认)
编写FeignConfig
4、开放其他模块的Feign接口
USERSERVICE1
USERSERVICE1
USERSERVICE2
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"})

SpringApplication添加开启FeignClient注解
3、添加提供Feign接口的方法,及调用USERSERVICE2的Feign方法
添加提供Feign接口的方法,及调用USERSERVICE2的Feign方法

userservice-two服务

1、同userservice-one
2、同userservice-one
3、添加提供Feign接口的方法,及调用USERSERVICE1的Feign方法
添加提供Feign接口的方法,及调用USERSERVICE1的Feign方法

启动两个服务测试

在这里插入图片描述
1、userservice-one调用userservice-two
userservice-one调用userservice-two
2、userservice-two调用userservice-one
userservice-two调用userservice-one

代码地址:
https://gitee.com/flywithtime/baseservice
https://gitee.com/flywithtime/userservice-one
https://gitee.com/flywithtime/userservice-two

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值