原 ACTUATOR/HYSTRIX.STREAM 没有反应的方法
版权声明:本文为博主原创文章,请尊重他人的劳动成果,转载请附上原文出处链接和本声明。
本文链接:https://www.91mszl.com/zhangwuji/article/details/1046
在启动类加上,就可以了:
// 解决 http://localhost:8001/hystrix.stream 无法访问的问题
@Bean
public ServletRegistrationBean hystrixMetricsStreamServlet() {
ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
registration.addUrlMappings("/hystrix.stream");
return registration;
}
2019-08-23 14:03:24 阅读(1111)
名师出品,必属精品 https://www.91mszl.com
博主信息