美文网首页
springboot2.0下hystrix dashboard

springboot2.0下hystrix dashboard

作者: fengshunli | 来源:发表于2018-05-07 10:53 被阅读0次

    在服务端加上,就ok了

    @Bean

    public ServletRegistrationBeangetServlet() {

    HystrixMetricsStreamServlet streamServlet =new HystrixMetricsStreamServlet();

        ServletRegistrationBean registrationBean =new ServletRegistrationBean(streamServlet);

        registrationBean.setLoadOnStartup(1);

        registrationBean.addUrlMappings("/hystrix.stream");

        registrationBean.setName("HystrixMetricsStreamServlet");

        return registrationBean;

    }

    相关文章

      网友评论

          本文标题:springboot2.0下hystrix dashboard

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