Spring Cloud Gateway与spring-cloud-circuitbreaker集成与理解

官方文档地址

本文以 spring-cloud2021版本为例子

spring-cloud-gateway文档地址: https://spring.io/projects/spring-cloud-gateway#overview

spring-cloud-circuitbreaker文档地址: https://spring.io/projects/spring-cloud-circuitbreaker

两者关系

首先spring-cloud-gateway集成了断路器spring-cloud-circuitbreaker(官网截图)
Spring Cloud Gateway与spring-cloud-circuitbreaker集成与理解_第1张图片
再来看看断路器 spring-cloud-circuitbreaker
Spring Cloud Gateway与spring-cloud-circuitbreaker集成与理解_第2张图片
从文档看circuitbreaker目前版本(3.0.3),支持Resilience4J和Spring Retry

首先circuitbreaker框架是对各种断路器的封装,底层还是要依赖各种三方的断路器实现;之前旧版本网关gateway还支持netflix-hystrix做断路器,但是在新版本中已经不再支持;

如在旧版本gateway里可以直接引入如下,既可以使用hystrix做网关断路器:

      
          org.springframework.cloud
          spring-cloud-starter-netflix-hystrix
      

但是后面gateway弃用了对netflix-hystrix的支持。

在新版本gateway里可以使用如下引用将circuitbreaker作为gateway的断路器

      
          org.springframework.cloud
          spring-cloud-starter-circuitbreaker-reactor-resilience4j
      

所以旧版本的 spring-cloud-starter-netflix-hystrixspring-cloud-starter-circuitbreaker-xxx-xxx 是同一级别的框架,但是circuitbreaker更加抽象了一层,底层支持Resilience4J和Spring Retry。

其实在旧版本的circuitbreaker中也有对hystrix的支持(因为circuitbreaker是一个抽象框架,类似SLF4J框架兼容Log4j,logback、Java Util Logging),以下是旧版本的circuitbreaker文档(现在找不到了)

Spring Cloud Gateway与spring-cloud-circuitbreaker集成与理解_第3张图片
但是由于hystrix已经停止更新,后面也被circuitbreaker弃用了。(这一段比较饶脑)

所以从目前看,hystrix被抛弃了两次!!!

集成与自动装配

结论:只要我们在网关项目中引入circuitbreaker相关的starter则gateway会将断路器自动集成,例如:

  <dependency>
      <groupId>org.springframework.cloudgroupId>
      <artifactId>spring-cloud-starter-circuitbreaker-reactor-resilience4jartifactId>
  dependency>
原理

todo~~

你可能感兴趣的:(Spring,Cloud源码分析,spring,cloud)