Hystrix Dashboard仪表盘Unable to connect to Command Metric Stream问题解决方案

在学习Spring Cloud断路器的时候配置Hystrix仪表盘出现Unable to connect to Command Metric Stream 错误。这个错误意思是连接不上。
我使用的Spring boot版本是1.5.2.RELEASE
我的解决方案是在pom文件中加入这个依赖,

        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-zuulartifactId>
            <version>1.4.4.RELEASEversion>
        dependency>

然后在启动类上加上@EnableCircuitBreaker注解,这样重新访问就可以连接上了。


感谢阅读本博客。

欢迎关注我的博客:https://li-weijian.github.io/

欢迎关注我的CSDN:https://blog.csdn.net/qq352642663

需要联系请加QQ:352642663

欢迎联系我共同交流

你可能感兴趣的:(杂类)