摘要:
https://blog.csdn.net/dwf_android/article/details/79359360 https://www.cnblogs.com/larryzeal/p/5874107.html https://blog.csdn.net/qq_19260029/article/ 阅读全文
摘要:
1.packaging 改为war 2.剔除内置tomcat 3.增加tomcat servlet 4.和application 同级增加 SpringBootStartApplication 5.发布 阅读全文
摘要:
1.springboot 仅2.0.x 支持,在此选择 2.0.7 2.新建Module eureka-zuul-client 3.导入依赖 4.启动类加上注解 @EnableEurekaClient@EnableZuulProxy 5.增加配置文件application.yml 6.增加zuul熔 阅读全文
摘要:
1.新建Module eureka-monitor-client 2.父级pom中添加module 3.编写eureka-monitor-client 中的pom 4.编写application.yml 5.主函数 6.输入 http://192.168.9.6:8766/turbine.strea 阅读全文
摘要:
1.引入依赖 2.主函数加入注解 3.配置文件actuator中开启hystrix 4.输入http://192.168.9.6:10114/actuator/hystrix.stream 显示 5.输入http://192.168.9.6:8765/hystrix 显示 6.填入http://19 阅读全文
摘要:
1.引入依赖 2.主函数开启 @EnableHystrixDashboard 3.actuator 中开启hyxstrix 4.运行http://192.168.9.6:10113/actuator/hystrix.stream 显示 5.运行 http://192.168.9.6:8764/hys 阅读全文
摘要:
1.引入依赖包 2.配置文件开启熔断器 3.定义熔断器fallback 4.编写hystrix_eurekaClientFeign类 阅读全文
摘要:
1.依赖包引入 2.主函数加入注解 @EnableHystrix 开启熔断器 3.编写熔断器faillbackMethod 阅读全文