详解springcloud Feign的Hystrix支持
程序员文章站
2023-12-12 16:35:16
本文介绍了springcloud feign的hystrix支持,分享给大家,具体如下:
一、feign client中加入hystrix的fallback
@...
本文介绍了springcloud feign的hystrix支持,分享给大家,具体如下:
一、feign client中加入hystrix的fallback
@feignclient(name="springboot-h2", fallback=hystrixclientfallback.class) //在fallback属性中指定断路器的fallback public interface userfeignclient { // @getmapping("/user/{id}") @requestmapping(value = "/user/{id}", method = requestmethod.get) user findbyid(@pathvariable("id") long id); @requestmapping(value="/users", method=requestmethod.get) list<user> findall(); @requestmapping(value="/post/user", method=requestmethod.post) user save(@requestbody user user); }
二、编写hystrixclientfallback类
@component //加入spring bean中 public class hystrixclientfallback implements userfeignclient{ @override public user findbyid(long id) { user u = new user(); u.setname("临时名"); u.setusername("匿名"); return u; } @override public list<user> findall() { return null; } @override public user save(user user) { return null; } }
三、加入hystrix支持
@enablecircuitbreaker
四、测试
不启动底层依赖的服务,直接启动服务,然后测试,发现浏览器中的结果为:
{"id":null,"username":"匿名","name":"临时名","age":null,"balance":null}
并没有像想象中的那样报异常,而是进入了hystrixclientfallback类中的findbyid方法中。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
详解springcloud Feign的Hystrix支持
-
详解spring cloud使用Hystrix实现单个方法的fallback
-
SpringCloud之Feign示例详解
-
详解Spring Cloud Feign 熔断配置的一些小坑
-
详解spring cloud Feign使用中遇到的问题总结
-
spring cloud feign不支持@RequestBody+ RequestMethod.GET报错的解决方法
-
基于Android开发支持表情的实现详解
-
Android升级支持库版本遇到的两个问题详解
-
springcloud 熔断器Hystrix的具体使用
-
详解CSS3原生支持div铺满浏览器的方法