我是靠谱客的博主 开放大碗,最近开发中收集的这篇文章主要介绍Hystrix Dashboard 出现 Failed opening connection to 404 解决1、Pom 文件(actuator、dashboard、javanica)2、Main启动类3、启动服务,浏览器输入http://localhost:${port}/hystrix,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

首先介绍一下Dashboard使用步骤

  • 1、Pom 文件(actuator、dashboard、javanica)
  • 2、Main启动类
  • 3、启动服务,浏览器输入http://localhost:${port}/hystrix

1、Pom 文件(actuator、dashboard、javanica)

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
            <version>1.4.7.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>com.netflix.hystrix</groupId>
            <artifactId>hystrix-javanica</artifactId>
        </dependency>

2、Main启动类

@SpringBootApplication
@EnableHystrixDashboard
public class DashBoard {
    public static void main(String[] args) {
        SpringApplication.run(DashBoard.class,args);
    }
    // 此配置是为了服务监控而配置,与服务容错本身无关,
    // ServletRegistrationBean因为springboot的默认路径不是"/hystrix.stream",
    // 只要在自己的项目里配置上下面的servlet就可以了
    @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;
    }
}

3、启动服务,浏览器输入http://localhost:${port}/hystrix

在这里插入图片描述

地址栏填写:
http://localhost:${port}/actuatr/hystrix.stream,这里port为服务提供者端口。

在这里插入图片描述
此时出现404错误,检查服务提供者pom文件是否包含actuator依赖,并且application.yml文件是否打开端点
在这里插入图片描述
在这里插入图片描述

management:
  endpoints:
    web:
      exposure:
        include: "*"

重启启动,运行,再次进入dashboard页面,如果一直显示Loading,可以先进入服务提供者的url,然后再进入dashboard。
在这里插入图片描述

最后

以上就是开放大碗为你收集整理的Hystrix Dashboard 出现 Failed opening connection to 404 解决1、Pom 文件(actuator、dashboard、javanica)2、Main启动类3、启动服务,浏览器输入http://localhost:${port}/hystrix的全部内容,希望文章能够帮你解决Hystrix Dashboard 出现 Failed opening connection to 404 解决1、Pom 文件(actuator、dashboard、javanica)2、Main启动类3、启动服务,浏览器输入http://localhost:${port}/hystrix所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部