Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二

Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二

  • 基本流程图,方便查看
  • TomcatServletWebServerFactory实例化过程
    • 实例化
    • 初始化之前处理
      • WebServerFactoryCustomizerBeanPostProcessor的postProcessBeforeInitialization
      • getCustomizers
        • getWebServerFactoryCustomizerBeans

基本流程图,方便查看

在这里插入图片描述

TomcatServletWebServerFactory实例化过程

实例化

bean生命周期,首先是实例化:
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第1张图片

初始化之前处理

实例化完成后,进行初始化之前,有处理器要处理,就是我们前面注册的WebServerFactoryCustomizerBeanPostProcessor
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第2张图片

WebServerFactoryCustomizerBeanPostProcessor的postProcessBeforeInitialization

这个里面有个lambda表达式的操作,其实就是先getCustomizers()获取所有的WebServerFactoryCustomizer集合,然后invoke调用每一个的customize方法做定制化,我们来看看具体的怎么做的。

	@Override
	public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
		if (bean instanceof WebServerFactory) {
			postProcessBeforeInitialization((WebServerFactory) bean);
		}
		return bean;
	}
	
	private void postProcessBeforeInitialization(WebServerFactory webServerFactory) {
		LambdaSafe.callbacks(WebServerFactoryCustomizer.class, getCustomizers(), webServerFactory)
				.withLogger(WebServerFactoryCustomizerBeanPostProcessor.class)
				.invoke((customizer) -> customizer.customize(webServerFactory));
	}

getCustomizers

如果不存在这些定制化器,就进行获取,然后排序,变成不可变集合返回。

	private Collection<WebServerFactoryCustomizer<?>> getCustomizers() {
		if (this.customizers == null) {
			// Look up does not include the parent context
			this.customizers = new ArrayList<>(getWebServerFactoryCustomizerBeans());
			this.customizers.sort(AnnotationAwareOrderComparator.INSTANCE);
			this.customizers = Collections.unmodifiableList(this.customizers);
		}
		return this.customizers;
	}

getWebServerFactoryCustomizerBeans

从容器里获取WebServerFactoryCustomizer类型的集合返回。

	private Collection<WebServerFactoryCustomizer<?>> getWebServerFactoryCustomizerBeans() {
		return (Collection) this.beanFactory.getBeansOfType(WebServerFactoryCustomizer.class, false, false).values();
	}

我们来看看这些都在哪里:
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第3张图片
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第4张图片
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第5张图片
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第6张图片
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第7张图片
Spring Boot 2.2.6 源码之旅十六SpringMVC源码之web环境初始化二_第8张图片

接下去我们看他们定制化了什么。

好了,今天就到这里了,希望对学习理解有帮助,大神看见勿喷,仅为自己的学习理解,能力有限,请多包涵。

你可能感兴趣的:(Spring,Boot,2.2.6,源码之旅,自动配置,SpringMVC,SpringBoot源码解析,SpringBoot源码,微服务)