一、降级(请求超时)
- 引入依赖
<!--放到调用者的pom.xml中-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
-
在启动类上启用
@EnableCircuitBreaker
-
在调用的方法上添加注解
//注意myFallback是回调方法名,回调方法的类型必须和调用方法的一致。
@HystrixCommand(fallbackMethod="myFallback")