spring cloud hystrix不起作用的原因

最近在搭建spring cloud的项目,其中包括eureka server、service provider、service consumer。

在consumer中利用feign调用provider中的服务,并在consumer中开启hystrix的功能,但是在测

试时hystrix功能一直不起作用,原因如下:

1、在consumer中开启hystrix的配置项:feign.hystrix.enabled=true 需要写在application.properties文件中,

下面的标签已说明需要在property或者是properties文件中。并不是在yml文件中。

spring cloud hystrix不起作用的原因_第1张图片

2、项目中原本多写了个关闭hystrix功能的配置类,虽然在@feignClient标签中没有用到,但是配置类中有@Configuration

标签,那么这个类依然会被spring扫描到,并注入ioc容器中,所以还是要把这个配置类全部注释掉为好。以免浪费时间。

spring cloud hystrix不起作用的原因_第2张图片

你可能感兴趣的:(spring cloud hystrix不起作用的原因)