上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 98 下一页
摘要: GateWay路由配置方式有两种:yml 和 配置类,这东西看人选择 1. yml(略) 2. 配置类,参考如下: @Configuration public class GateWayConfig { @Bean public RouteLocator customRouteLocator(Rou 阅读全文
posted @ 2021-02-24 14:07 爱编程DE文兄 阅读(695) 评论(0) 推荐(0) 编辑
摘要: 话不多说,直接开干。 1.创建 网关模块。 2.添加依赖 <dependencies> <!-- gateway --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starte 阅读全文
posted @ 2021-02-24 13:53 爱编程DE文兄 阅读(133) 评论(0) 推荐(0) 编辑
摘要: GateWay概念: 1.路由: 2.断言:请求路径的匹配规则,若匹配则进入到断言所在的路由 3.过滤器: 阅读全文
posted @ 2021-02-24 13:16 爱编程DE文兄 阅读(243) 评论(0) 推荐(0) 编辑
摘要: GateWay特性: GateWay和Zuul的区别: Zuul1.x模型: 阅读全文
posted @ 2021-02-24 12:52 爱编程DE文兄 阅读(1287) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-02-24 12:25 爱编程DE文兄 阅读(107) 评论(0) 推荐(0) 编辑
摘要: Hystrix图形化Dashboard一般是用来监控 被调用方/服务提供者 的,监控其被调用的情况。因此在提供方得加入下面的依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-sta 阅读全文
posted @ 2021-02-24 12:00 爱编程DE文兄 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Hystrix也能做对服务的监控,观察服务被调用的情况。下面是步骤: 1.创建一个模块,用于监控其他服务 2.添加依赖 <dependencies> # 该依赖是hystrix核心监控的依赖 <dependency> <groupId>org.springframework.cloud</group 阅读全文
posted @ 2021-02-24 11:42 爱编程DE文兄 阅读(80) 评论(0) 推荐(0) 编辑
摘要: Hystrix工作流程图: 上面的文字描述只是当前的个人理解,可能会存在一定的不足。 阅读全文
posted @ 2021-02-24 11:06 爱编程DE文兄 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-02-23 23:27 爱编程DE文兄 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 服务熔断使用很简单,在可能会出现故障的方法上加上@HystrixCommand,并设置一些属性,如下: // 服务熔断 @HystrixCommand(fallbackMethod = "paymentCircuitBreaker_fallback",commandProperties ={ @Hy 阅读全文
posted @ 2021-02-23 23:12 爱编程DE文兄 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 98 下一页