启动项目microservice-consumer-movie-feign-hystrix-fallback,测试http://localhost:8010/hystrix.stream,发现返回的是404.这是为什么呢?
查看项目的依赖树,项目甚至连hystrix-metrics-event-stream的依赖都没有。那么如何解决该问题呢?
解决方法如下:
一 项目名重构为microservice-consumer-movie-feign-hystrix-fallback-stream
二 为项目添加spring-cloud-start-hystrix的依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
三 在启动类上添加@EnableCircuitBreaker,这样就可以使用/hystrix