Dubbo 服务容错Hystrix

一、服务者

1.pom

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>
                spring-cloud-starter-netflix-hystrix
            </artifactId>
        </dependency>                    

2.启动类添加 @EnableHystrix   开启服务容错

3.方法出现异常 @HystrixCommand

Dubbo 服务容错Hystrix

二、消费者

1.pom

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>
                spring-cloud-starter-netflix-hystrix
            </artifactId>
        </dependency>                    

2.启动类添加 @EnableHystrix   开启服务容错

3.方法出现异常 @HystrixCommand

Dubbo 服务容错Hystrix

 

上一篇:javascript – Materialise.css自动完成不使用Polymer


下一篇:深入Spring Boot:快速集成Dubbo + Hystrix