Spring Cloud (5)hystrix 服务熔断

Spring Cloud (5)hystrix  服务熔断

1.pom文件

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
<version>1.4..RELEASE</version>
</dependency>

2.yml

Spring Cloud (5)hystrix  服务熔断

3.

@HystrixCommand(fallbackMethod="")

Spring Cloud (5)hystrix  服务熔断

4.启动类

Spring Cloud (5)hystrix  服务熔断

上一篇:Java选择题练习:构造函数(牛客网)


下一篇:设计模式—工厂模式