1、spring cloud---feign+Hystrix熔断器实现(第三章)

Feign-Hystrix

因为熔断只是作用在服务调用这一端,因此我们根据上一篇的示例代码只需要改动spring-cloud-consumer项目相关代码就可以。因为,Feign中已经依赖了Hystrix所以在maven配置上不用做任何改动。

1、配置文件
application.properties添加这一条:

feign.hystrix.enabled=true

2、创建回调类
创建HelloRemoteHystrix类继承与HelloRemote实现回调的方法

@Component
public class HelloRemoteHystrix implements HelloRemote{

    @Override
    public String hello(@RequestParam(value = "name") String name) {
        return "hello" +name+", this messge send failed ";
    }
}

3、添加fallback属性
在HelloRemote类添加指定fallback类,在服务熔断的时候返回fallback类中的内容。

@FeignClient(name= "spring-cloud-producer",fallback = HelloRemoteHystrix.class)
public interface HelloRemote {

    @RequestMapping(value = "/hello")
    public String hello(@RequestParam(value = "name") String name);

}

改动点就这点,很简单吧。

4、测试
那我们就来测试一下看看效果吧。

依次启动0301spring-cloud-eureka、0302spring-cloud-producer、0303spring-cloud-consumer-hystrix三个项目。

浏览器中输入:http://localhost:9091/hello/llx

返回:hello llx,this is first messge!

说明加入熔断相关信息后,不影响正常的访问。接下来我们手动停止spring-cloud-producer项目再次测试:

浏览器中输入:http://localhost:9091/hello/llx

返回:hello llx, this messge send failed!

根据返回结果说明熔断成功。

猜你喜欢

转载自blog.csdn.net/qq_40342015/article/details/83828736
今日推荐