一、服务者
1.pom
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId> spring-cloud-starter-netflix-hystrix </artifactId> </dependency>
2.启动类添加 @EnableHystrix 开启服务容错
3.方法出现异常 @HystrixCommand
二、消费者
1.pom
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId> spring-cloud-starter-netflix-hystrix </artifactId> </dependency>
2.启动类添加 @EnableHystrix 开启服务容错
3.方法出现异常 @HystrixCommand