欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解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方法中。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: