GateWay源码读取步骤

GateWay源码读取步骤,第1张

先看 spring.factories 自动配置文件
1、网关核型配置类:GatewayAutoConfiguration
2、服务注册配置类:GatewayDiscoveryClientAutoConfiguration
3、同步服务路由配置类:GatewayLoadBalancerClientAutoConfiguration
4、异步服务路由注册类:GatewayReactiveLoadBalancerClientAutoConfiguration

请求执行入口:
DispatcherHandler#handle->
AbstractHandlerMapping#getHandler->
(RoutePredicateHandlerMapping#getHandlerInternal->
RoutePredicateHandlerMapping#lookupRoute->
RouteDefinitionRouteLocator#getRoutes->
RouteDefinitionRouteLocator#convertToRoute->)
DispatcherHandler#invokeHandler->
FilteringWebHandler#handle->
DefaultGatewayFilterChain(combined).filter(exchange) //执行所有filter

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/871577.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存