概述
Spring Cloud 中使用断路器,是为了在远程调用失败时,可以有个备用的返回。
Spring Cloud对断路器支持很好,只需简单几步即可使用,下面进行说明。
1,添加依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
2,使用注解
在主函数的类上,添加注解 @EnableCircuitBreaker
;
在需要断路操作的方法上,添加注解 @HystrixCommand(fallbackMethod = "hello")
:
@HystrixCommand(fallbackMethod = "silence") //2
public String getHi() {
String msg = restTemplate.getForObject("http://jack/hi", String.class);
return msg;
}
public String silence(){
return "can't say hi";
}
这样,在restTemplate.getForObject()
方法无法正常返回时,将执行fallbackMethod
属性指定的方法silence()
;
最后
以上就是粗暴店员为你收集整理的Spring Cloud 中的断路器 hystrix的全部内容,希望文章能够帮你解决Spring Cloud 中的断路器 hystrix所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复