spring boot 2.1.X 版本中融合 Greenwich.M2 的 spring cloud

栏目: Java · 发布时间: 5年前

内容简介:}则需要去访问几次提供熔断的方法就可以解决了,因为现在我们还没有访问过熔断的方法,系统找不到数据。

spring boot 2.1.X 版本中融合 Greenwich.M2 的 spring cloud

一. feign + hystrix dashboard 整合

  1. gradle 中需要导入的依赖,( SpringCloudVersion = ‘2.1.0.M2’)

    dependencies {
        compile(
            "org.springframework.boot:spring-boot-starter-actuator",
            "org.springframework.cloud:spring-cloud-starter-openfeign:${SpringCloudVersion}",
            "org.springframework.cloud:spring-cloud-starter-netflix-hystrix:${SpringCloudVersion}",
            "org.springframework.cloud:spring-cloud-starter-netflix-hystrix-dashboard:${SpringCloudVersion}",
            "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:${SpringCloudVersion}"
        )

}

``
  1. 在主程序启动类中加入@EnableHystrixDashboard注解,开启hystrixDashboard。

    package pers.roamer.spring.cloud.feign.client;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.hystrix.EnableHystrix;
    import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
    import org.springframework.cloud.openfeign.EnableFeignClients;
    
    @SpringBootApplication
    @EnableHystrix
    @EnableHystrixDashboard
    @EnableFeignClients
    public class FeignClientApplication {
        public static void main(String[] args) {
            SpringApplication.run(FeignClientApplication.class, args);
        }
    }
  2. 在 此界面的 url 中录入 : http://127.0.0.1:8765/actuator/hystrix.stream

    注意: 在这里要加入actuator

  3. 如果这里出现 , Unable to connect to Command Metrix Stream.

    spring boot 2.1.X 版本中融合 Greenwich.M2 的 spring cloud

    需要在applicaiton.yaml 中加入下面一段:(注意最后的*一定要加上引号,不然会启动报错。)

    #解决 在 spring boot 2.0 下 hystrix.stream 404的错误
    management:
        endpoints:
            web:
                exposure:
                    include: '*'
  4. 如果一直出现 loading 的界面。

    spring boot 2.1.X 版本中融合 Greenwich.M2 的 spring cloud

则需要去访问几次提供熔断的方法就可以解决了,因为现在我们还没有访问过熔断的方法,系统找不到数据。


以上所述就是小编给大家介绍的《spring boot 2.1.X 版本中融合 Greenwich.M2 的 spring cloud》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

科技之巅

科技之巅

麻省理工科技评论 / 人民邮电出版社 / 2016-10-1 / CNY 98.00

《麻省理工科技评论》从2001年开始,每年都会公布“10大突破技术”,即TR10(Technology Review 10),并预测其大规模商业化的潜力,以及对人类生活和社会的重大影响。 这些技术代表了当前世界科技的发展前沿和未来发展方向,集中反映了近年来世界科技发展的新特点和新趋势,将引领面向未来的研究方向。其中许多技术已经走向市场,主导着产业技术的发展,极大地推动了经济社会发展和科技创新......一起来看看 《科技之巅》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具