Springcloud hystrix questions about the failure of the implementation of hystrix.stream Jump

 

After watching friends Summary: When should version of the problem. Some versions have not configured for /hystrix.stream

So solutions (users answer):

需要配置类配置下面
@Bean
public ServletRegistrationBean hystrixMetricsStreamServlet() {
ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
registration.addUrlMappings("/hystrix.stream");
return registration;
}

 

Kick call it a day!

Guess you like

Origin www.cnblogs.com/wjx6270/p/11621725.html