码迷,mamicode.com
首页 > 编程语言 > 详细

关于springcloud hystrix 执行 hystrix.stream 跳转失败的问题

时间:2019-10-04 13:02:42      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:解决   答案   跳转   css   nbsp   hystrix   没有   map   metrics   

 

经过观看网友的总结:应该时版本的问题。某些版本没有对/hystrix.stream进行配置

所以解决方案(网友答案):

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

 

打完收工!

关于springcloud hystrix 执行 hystrix.stream 跳转失败的问题

标签:解决   答案   跳转   css   nbsp   hystrix   没有   map   metrics   

原文地址:https://www.cnblogs.com/wjx6270/p/11621725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!