Spring Cloud Alibaba - 27 Gateway源码解析

Posted 小小工匠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud Alibaba - 27 Gateway源码解析相关的知识,希望对你有一定的参考价值。

文章目录


How it works

https://docs.spring.io/spring-cloud-gateway/docs/current/reference/html/


3.x版本


入口

按照boot的套路,找两个地方:

  • 注解 (Gateway没有呢…)
  • pom中的jar包 对应的 spring.factories 中的EnableAutoConfiguration类

那就 先找pom的starter

然后找这个spring.factories 吧, 如下

GatewayAutoConfiguration 符合 boot的约定,其实我们可以直接猜测 GatewayAutoConfiguration 。

@Configuration(proxyBeanMethods = false)
@ConditionalOnProperty(name = "spring.cloud.gateway.enabled", matchIfMissing = true)
@EnableConfigurationProperties
@AutoConfigureBefore( HttpHandlerAutoConfiguration.class, WebFluxAutoConfiguration.class )
@AutoConfigureAfter( GatewayReactiveLoadBalancerClientAutoConfiguration.class,
		GatewayClassPathWarningAutoConfiguration.class )
@ConditionalOnClass(DispatcherHandler.class)
public class GatewayAutoConfiguration 
  .........

找个这个地方,肯定是要看@Bean的


自动配置类源码分析

以上是关于Spring Cloud Alibaba - 27 Gateway源码解析的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Alibaba全家桶——Spring Cloud Alibaba介绍

Spring Cloud Alibaba系列教程——Spring Cloud Alibaba开篇

spring boot 整合spring cloud alibaba

spring boot 整合spring cloud alibaba

深度剖析Spring Cloud Alibaba系列——如何兼容Spring Cloud

Spring Cloud Alibaba Sentinel集成