在学习Spring Cloud断路器的时候配置Hystrix仪表盘出现Unable to connect to Command Metric Stream 错误。这个错误意思是连接不上。
我使用的Spring boot版本是1.5.2.RELEASE
我的解决方案是在pom文件中加入这个依赖,
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zuul</artifactId> <version>1.4.4.RELEASE</version> </dependency>
然后在启动类上加上@EnableCircuitBreaker注解,这样重新访问就可以连接上了。
欢迎关注我的博客:https://li-weijian.github.io/
欢迎关注我的CSDN:https://blog.csdn.net/qq352642663
需要联系请加QQ:352642663
欢迎联系我共同交流