我是靠谱客的博主 粗暴店员,最近开发中收集的这篇文章主要介绍Spring Cloud 中的断路器 hystrix,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部