其他分享
首页 > 其他分享> > Dubbo 服务容错Hystrix

Dubbo 服务容错Hystrix

作者:互联网

一、服务者

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

 

标签:Dubbo,hystrix,Hystrix,netflix,EnableHystrix,容错,cloud,HystrixCommand
来源: https://www.cnblogs.com/mm163/p/10657142.html