博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(四十八)java版spring cloud+spring boot+redis多租户社交电子商务平台-SpringCloud Gateway...
阅读量:6216 次
发布时间:2019-06-21

本文共 1534 字,大约阅读时间需要 5 分钟。

电子商务平台源码请加企鹅求求:三五三六二四七二五九。在SpringCloud Gateway中,路由定位器是查找请求连接的作用,我们通过源码看下,在SpringCloud Gateway中,路由定位器是如何工作的。

一、RouteLocator SpringCloud gateway的路由定位器,包括CachingRouteLocator,CompositeRouteLocator,RouteDefinitionRouteLocator,他们的关系可以从GatewayAutoConfiguration中的代码看出,

public RouteLocator routeDefinitionRouteLocator(GatewayProperties properties,                                   List
GatewayFilters, List
predicates, RouteDefinitionLocator routeDefinitionLocator) { return new RouteDefinitionRouteLocator(routeDefinitionLocator, predicates, GatewayFilters, properties);}@Bean@Primary//TODO: property to disable composite?public RouteLocator cachedCompositeRouteLocator(List
routeLocators) { return new CachingRouteLocator(new CompositeRouteLocator(Flux.fromIterable(routeLocators)));}复制代码

就是CachingRouteLocator中包含了CompositeRouteLocator,CompositeRouteLocator中包含了RouteDefinitionRouteLocator类型,就是一个请求过来获取Route的入口类型就是CachingRouteLocator的getRoutes方法。同时这个类型还支持监听zk节点变更事件,刷新缓存

二、RouteDefinitionLocator

而RouteDefinitionRouteLocator定位器是通过RouteDefinitionLocator的RouteDefinition定位器获取定义的数据的。

有三种类型的RouteDefinitionLocator:DiscoveryClientRouteDefinitionLocator,DiscoveryClientRoutDefinitionRepository,PropertiesRouteDefinitionLocator。

其中,DiscoveryClientRoutDefinitionRepository使用的是DiscoveryClientRouteDefinitionLocator定位器,是从注册中心获取路由信息,PropertiesRouteDefinitionLocator是从配置文件中获取路由信息。

转载于:https://juejin.im/post/5cf8d639e51d4550723b13bf

你可能感兴趣的文章
MapReduce:详解Shuffle过程---map和reduce数据交互的关键
查看>>
Nodejs框架演进之路
查看>>
SpringBoot学习_URL映射的那些事儿
查看>>
Linux数据库:mysql默认编码设置
查看>>
intsall redis
查看>>
关于手机等品牌型号搜索与采集的中文分词分离
查看>>
html5api(2)---(FileReader)
查看>>
LRU cache 设计
查看>>
分布式搜索Elasticsearch_配置
查看>>
linux 单引号,双引号,反引号
查看>>
介绍一款超实用的演讲必备工具 ZoomIt
查看>>
test
查看>>
定义一个健壮的Android Service (IntentService)类
查看>>
jeecg3.5.0-maven版本-开发环境搭建步骤-myeclipse
查看>>
莱特币litecoin ASIC挖矿机配置三
查看>>
win7 Host 与virtualbox 中的 ubuntu 11.04 共享文件夹
查看>>
Ubuntu linux 关机、重启、注销 命令 (linux)
查看>>
CoffeeScript 速抄本
查看>>
nginx做本地端口代理的问题
查看>>
客户端Web绘图VML与SVG
查看>>