springcloud 的学习 断路由

Posted 海蜃天波

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springcloud 的学习 断路由相关的知识,希望对你有一定的参考价值。

滴水穿石

 

添加依赖

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

ribbon + restTample

启动类添加注解 : @EnableHystrix

 service 类上添加一个回滚的方法

当服务不可用的时候,直接调用回滚的方法,不会出现等待未响应

=========================================================================

feign

给接口创建一个实现类,实现接口中的方法

在接口上配置回滚方法

========================================================添加监控的时候遇到了问题=============

添加

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

这个依赖后总是报错。

未解决。放到后边。。。

—————————————————————————————————————————————————————————————————————————

无论如何,心平气和

以上是关于springcloud 的学习 断路由的主要内容,如果未能解决你的问题,请参考以下文章

SpringCloud

springCloud学习- 路由网关(zuul)

SpringCloud学习系列-zuul路由网关

SpringCloud 学习--路由网关

SpringCloud学习系列之七 ----- Zuul路由网关的过滤器和异常处理

SpringCloud学习成长之路 五 路由器网关