一、OpenFeign概述

1、OpenFeign是什么

https://github.com/spring-cloud/spring-cloud-openfeign
Feign是一个声明式WebService客户端,使用Feign能让编写Web Service客户端更加简单,只需要创建一个接口并添加注解即可
他的使用方法时定义一个服务接口然后在上面添加注解,Feign也支持可插拔式的编码器和解码器。Spring Cloud 对Feign进行了封装。使其支持了SpringMVC 标准注解和HttpMessageConverters。Feign可以与Eureka和Ribbon组合使用以支持负载均衡。

2、Feign作用

Feign旨在使编写Java Http客户端变得更加容易。

个人理解:声明式远程方法调用

前面在使用Ribbon + RestTemplate时,利用RestTemplate 对http请求的封装处理,形成一套模板化的调用方法,但是在实际开发中,由于对服务依赖的调用可能不止一处,往往一个接口会被多出调用,所以通常都会针对每个微服务自行封装一些客户端类来包装这些依赖服务的调用。所以,Feign在此基础上做了进一步的封装,由它来帮助我们定义和实现依赖服务接口的定义。在Feign的实现下,我们只需要创建一个接口并使用注解的方式来配置它(以前是Dao接口上面标注Mapper注解,现在是一个微服务接口上面标注一个Feign注解即可) 即可完成对服务提供方的接口绑定,简化了使用Spring Cloud Ribbon时,自动封装服务调用客户端的开发量。

3、Feign集成了Ribbon

利用Ribbon维护了 [payment]的服务列表信息,并且通过轮询实现了客户端的负载均衡,而与Ribbon不同的是,通过Feign只需要定义服务绑定接口且以声明式的方法,简单而优雅的实现了服务调用。

二、OpenFeign使用步骤

Feign 是使用在消费端!

1、创建cloud-consumer-openfeign-order80 模块

2、写pom

  1. <!-- OpenFeign 依赖 -->
  2. <dependency>
  3. <groupId>org.springframework.cloud</groupId>
  4. <artifactId>spring-cloud-starter-openfeign</artifactId>
  5. </dependency>

总体pom

  1. <!--openfeign-->
  2. <dependencies>
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-openfeign</artifactId>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  10. </dependency>
  11. <dependency>
  12. <groupId>com.springcloud</groupId>
  13. <artifactId>cloud-api-commons</artifactId>
  14. <version>${project.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-actuator</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-devtools</artifactId>
  27. <scope>runtime</scope>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>

3、写yaml

  1. server:
  2. port: 80
  3. eureka:
  4. client:
  5. register-with-eureka: true
  6. fetch-registry: true
  7. service-url:
  8. defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka
  9. spring:
  10. application:
  11. name: cloud-feign-consumer

4、主启动类

主启动类上添加 @EableFeignClients注解

  1. @SpringBootApplication
  2. @EnableFeignClients // 启用Feign功能
  3. public class OpenFeignMainOrder80 {
  4. public static void main(String[] args) {
  5. SpringApplication.run(OpenFeignMainOrder80.class,args);
  6. }
  7. }

5、业务类

声明一个远程调用服务接口,这个接口可以在 commons 模块中 如果是在一个别的模块中,那么这个远程调用服务接口所在的包结构,必须要能被Springboot扫描到

5.1 声明远程调用服务接口

@FeignClient("provider微服务名字")
注意:

  • 这里声明的方法名,必须和provider服务中的controller中方法名一致
  • 如果需要传递参数,那么@RequestParam@RequestBody @PathVariable 不能省 必加 ```java //Feign封装了Ribbon和RestTemplate,实现负载均衡和发送请求 @Component @FeignClient(value = “CLOUD-PAYMENT-SERVICE”) //作为feign的接口,找CLOUD-PAYMENT-SERVICE服务 public interface PaymentFeignService {

    //直接复制8001的方法 @GetMapping(“/payment/get/{id}”) public CommonResult getPaymentById(@PathVariable(“id”) Long id);

}

  1. <a name="IOkwL"></a>
  2. ### 5.2 consumer的controller
  3. 直接注入这个 RemotePaymentService 接口对象
  4. ```java
  5. @RestController
  6. public class FeignController {
  7. @Resource
  8. private PaymentFeignService paymentFeignService;
  9. @GetMapping("/consumer/payment/get/{id}")
  10. public CommonResult<Payment> getPaymentById(@PathVariable("id") Long id){
  11. return paymentFeignService.getPaymentById(id);
  12. }
  13. }

5.3 provider的controller

这里声明的方法 要和 远程调用服务接口中的 方法名保持一致

  1. @Slf4j
  2. @RestController
  3. public class PaymentController {
  4. @GetMapping("/payment/get/{id}")
  5. public CommonResult getPaymentById(@PathVariable("id") Long id) {
  6. Payment payment = paymentService.getPaymentById(id);
  7. log.info("******查询结果:" + payment);
  8. if (payment != null) {
  9. // 查询成功
  10. return new CommonResult(200, "查询成功!" + serverPort, payment);
  11. } else {
  12. return new CommonResult(444, "没有对应记录, 查询Id: " + id);
  13. }
  14. }
  15. }

5.4 按照顺序启动项目(server集群,提供者集群,消费者),然后在浏览器输入http://localhost/consumer/payment/get/1

三、OpenFeign超时控制

1、超时设置,故意设置超时演示出错情况

1.1 服务提供方8001故意写暂停程序

  1. @RequestMapping("/payment/feign/timeout")
  2. public String timeOut() {
  3. try {
  4. Thread.sleep(3000);
  5. } catch (InterruptedException e) {
  6. e.printStackTrace();
  7. }
  8. return serverPort;
  9. }

1.2 远程调用服务接口

  1. @GetMapping("/payment/feign/timeout")
  2. public String paymentFeignTimeout();

1.3 消费方接口

  1. @GetMapping("/consumer/payment/feign/timeout")
  2. public String paymentFeignTimeout(){
  3. //openFeign-ribbon,客户端一般默认等待1秒
  4. return paymentFeignService.paymentFeignTimeout();
  5. }

1.4 页面报错

启动server集群,提供者8001,消费者80
http://localhost/consumer/payment/feign/timeout
三秒后报错。
image.png

2、超时报错

2.1 OpenFeign默认等待时间为1秒钟,超过后报错

默认Feign客户端只等待一秒钟,但是服务段处理需要超过1秒钟,导致Feign客户端不想等待了,直接返回报错。
为了避免这种请况,有时候我们需要设置Feign客户端的超时控制

Feign 默认是支持Ribbon ,Feign依赖里自己带了Ribbon

2.2 解决问题

在消费端的配置文件中配置

这里的ReadTimeout 和 ConnectTimeout 没有代码提示,但可以使用

  1. # 设置feign 客户端超时时间(OpenFeign默认支持ribbon)
  2. ribbon:
  3. # 设置建立连接后从服务器读取到可用资源所用的时间
  4. ReadTimeout: 5000
  5. # 设置建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间
  6. ConnectTimeout: 5000

四、OpenFeign日志打印功能

Feign提供了日志打印功能,我们可以通过配置来调整日志级别,从而了解Feign中Http请求的细节。
说白了就是:对Feign接口的调用情况进行监控和输出。

1、日志级别

NONE 默认的,不显示任何日志
BASIC 仅记录请求方法、URL、响应状态码及执行时间
HEADERS 除了BASIC中定义的信息之外,还有请求和响应的头信息
FULL 除了HEADERS中定义的信息外,还有请求和响应的正文及元数据。

2、配置日志

配置在消费端

2.1 配置日志bean

在80的springcloud包下新建config.FeignConfig

  1. @Configuration
  2. public class FeignConfig {
  3. @Bean
  4. Logger.Level feignLoggerLevel(){
  5. return Logger.Level.FULL;
  6. }
  7. }

2.2 配置消费端的yaml文件

在80的yml文件中添加:

  1. #开启日志的feign客户端
  2. logging:
  3. level:
  4. #feign日志以什么级别监控哪个接口
  5. com.springcloud.service.PaymentFeignService: debug #写你们自己的包名

2.3 查看后台日志

http://localhost/consumer/payment/feign/timeout
image.png