赞
踩
服务内添加调用失败时的方法
public String helloError(){
return “request Error”;
}
并且在对应的接口中用@HystrixCommand注解传入
@HystrixCommand(fallbackMethod = “helloError”)
public String helloService() {
return restTemplate.getForEntity(“http://user/getUser”,String.class).getBody();
}
在对应熔断的接口中添加
@FeignClient(value = “message-api”,fallback = MessageApiFailBack.class)
MessageApiFailBack为熔断时调用的方法
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。