1、重试
spring:
cloud:
gateway:
discovery:
locator:
enabled: true
lowerCaseServiceId: true
routes:
- id: gate_hi
uri: lb://gateway-hi
predicates:
- Path=/retry/*
filters:
- StripPrefix=1
- name: Retry
args:
retries: 3
series: SERVER_ERROR
methods: GET,POST
retries:重试次数
series: SERVER_ERROR,下游服务报5XX系列的错误触发重试机制
methods:重试的HTTP方法
hi服务hello接口
@GetMapping("hello")
public String hello(@RequestParam String name) {
int i = 1 / 0;
return "hi," + name + " ! " + "访问端口号:" + port;
}
启动eureka、hi、limit服务
2、熔断Hystrix
添加 hystrix 依赖
<!-- hystrix -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
熔断配置
server:
port: 8026
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8088/eureka/
spring:
application:
name: gateway-limit
cloud:
gateway:
discovery:
locator:
enabled: true
lowerCaseServiceId: true
routes:
- id: gateway_hi
uri: lb://gateway-hi
predicates:
- Path=/hi/*
filters:
- StripPrefix=1
#熔断
- name: Hystrix
args:
name: localfallback
fallbackUri: forward:/fallback
回调方法在网关服务
@RestController
public class IndexController {
@RequestMapping("/fallback")
public String fallback