SpringBoot源码 | prepareContext方法解析
- prepareContext
- context.setEnvironment
- postProcessApplicationContext
- applyInitializers
- listeners.contextPrepared
- bootstrapContext.close
- logStartupProfileInfo
- beanFactory.registerSingleton
- getAllSources
- load
- listeners.contextLoaded
prepareContext
SpringBoot启动流程中SpringApplication.run方法执行流程中的prepareContext方法主要是为了配置容器的基本信息,prepareContext方法的入参包括DefaultBootstrapContext、ConfigurableApplicationContext、ConfigurableEnvironment、SpringApplicationRunListeners、ApplicationArguments、Banner,基本上在启动流程中加载的应用程序上下文,配置的环境信息,运行监听器,应用参数及日志打印对象Banner都用到了,下面来看一下prepareContext的源码
context.setEnvironment
context.setEnvironment方法主要是为应用程序的上下文设置environment,可以直接参考方法源码的注释
继续向下执行看到
postProcessApplicationContext
postProcessApplicationContext方法主要是对应用程序上下文进行相关处理,同时子类也可以根据需要进行相关处理
debug源码可以看到这里主要是为应用程序上下文设置ConversionService,设置完成之后
applyInitializers
applyInitializers方法主要是在refresh之前将ApplicationContextInitializer应用于应用程序上下文context,或者说是获取所有初始化器调用initialize()初始化,源码如下
listeners.contextPrepared
listeners.contextPrepared方法主要是为了触发所有 SpringApplicationRunListener监听器的contextPrepared事件方法,源码
bootstrapContext.close
bootstrapContext.close方法的官方注释意思是说当BootstrapContext关闭并且ApplicationContext准备好时这个方法会被调用
logStartupProfileInfo
logStartupProfileInfo方法调用主要是通过日志记录活动的配置文件信息,debug可以看到如图
配置文件内容
下面我们来看一下为什么会打印druid,源码中List activeProfiles = quoteProfiles(context.getEnvironment().getActiveProfiles());为获取配置的环境信息中激活的profiles信息,跟进去可以看到
继续跟doGetActiveProfiles方法
继续跟doGetActiveProfilesProperty可以看到这里有一个常量值
常量的值就是
正是我们在配置文件application.yml中看到的配置参数key值,之后在回到主方法prepareContext中继续往下跟进看到context.getBeanFactory方法,官方注释就是Add boot specific singleton beans 添加启动特定的单例bean同时执行beanFactory.registerSingleton方法,官方注释是
Add the given singleton object to the singleton cache of this factory.将给定的单例对象添加到此工厂的单例缓存,
beanFactory.registerSingleton
由beanFactory.registerSingleton方法的源码可以看到
跟进该方法看到registerSingleton方法主要是addSingleton方法,也就是我们说的将给定的单例对象添加到此工厂的单例缓存,
继续执行,当printedBanner不为null的时候执行同springApplicationArguments一样的操作,继续向下执行我们看到getAllSources方法
getAllSources
getAllSources方法是为应用程序上下文设置所有的资源在应用程序上下文被调用时,源码如图
继续向下执行看到load方法
load
load方法Load beans into the application context 加载启动类 the context to load beans into 将启动类注入容器
加载完成之后执行listeners.contextLoaded触发所有SpringApplicationRunListener监听器contextLoaded方法
listeners.contextLoaded
listeners.contextLoaded方法为运行监听器SpringApplicationRunListener执行contextLoaded方法
至此prepareContext就算执行完成了,对应的容器的基本配置也就加载完成了,后续继续讲解后续在SpringBoot启动时执行的方法。