美文网首页
Spring Cloud 的hystrix 报错:Unable

Spring Cloud 的hystrix 报错:Unable

作者: firststep | 来源:发表于2019-02-20 10:13 被阅读0次

还是在学习hystrix监控的时候遇到了一个问题,访问过http://localhost:7913/hystrix.stream之后就显示Unable to connect to Command Metric Stream。这是为什么呢?
我就查了一下资料,前辈说springBoot1.5是可以的,那为什么2.0就不行了呢?
进入源代码中查看一下,发现spring2.0的一个Servlect被注释掉了,我们只要在自己的项目里配置上这个servlet就ok了。
具体操作:

@Bean
    public ServletRegistrationBean getServlet() {
        HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();
        ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);
        registrationBean.setLoadOnStartup(1);
        registrationBean.addUrlMappings("/hystrix.stream");
        registrationBean.setName("HystrixMetricsStreamServlet");
        return registrationBean;
    }

这样就可以了。

相关文章

网友评论

      本文标题:Spring Cloud 的hystrix 报错:Unable

      本文链接:https://www.haomeiwen.com/subject/vyecyqtx.html