hystrix.stream访问出现404问题

hystrix.stream访问出现404问题_第1张图片

访问响应服务的hystrix.stream,出现404错误

原因是我用的版本是spring boot2.0以上,需要在启动类添加如下代码

@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;
    }
}

这样就可以正常运行了

你可能感兴趣的:(SpringCloud)