摘要:
GateWay路由配置方式有两种:yml 和 配置类,这东西看人选择 1. yml(略) 2. 配置类,参考如下: @Configuration public class GateWayConfig { @Bean public RouteLocator customRouteLocator(Rou 阅读全文
摘要:
话不多说,直接开干。 1.创建 网关模块。 2.添加依赖 <dependencies> <!-- gateway --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starte 阅读全文
摘要:
GateWay概念: 1.路由: 2.断言:请求路径的匹配规则,若匹配则进入到断言所在的路由 3.过滤器: 阅读全文
摘要:
GateWay特性: GateWay和Zuul的区别: Zuul1.x模型: 阅读全文
摘要:
阅读全文
摘要:
Hystrix图形化Dashboard一般是用来监控 被调用方/服务提供者 的,监控其被调用的情况。因此在提供方得加入下面的依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-sta 阅读全文
摘要:
Hystrix也能做对服务的监控,观察服务被调用的情况。下面是步骤: 1.创建一个模块,用于监控其他服务 2.添加依赖 <dependencies> # 该依赖是hystrix核心监控的依赖 <dependency> <groupId>org.springframework.cloud</group 阅读全文
摘要:
Hystrix工作流程图: 上面的文字描述只是当前的个人理解,可能会存在一定的不足。 阅读全文