蜂蛰伤论坛

首页 » 常识 » 预防 » 运行源码分析初始化Application
TUhjnbcbe - 2021/8/19 7:17:00
治疗白癜风需要多长时间 http://m.39.net/news/a_5919529.html
初始化ApplicationArguments

监听器启动之后,紧接着便是执行ApplicationArguments对象的初始化,Application-Arguments是用于提供访问运行SpringApplication时的参数。

ApplicationArguments的初始化过程非常简单,只是调用了它的实现类Default-ApplicationArguments并传入main方法中的args参数。

ApplicationArgumentsapplicationArguments=newDefaultApplicationArguments(args);

在DefaultApplicationArguments中将参数args封装为Source对象,Source对象是基于Spring框架的SimpleCommandLinePropertySource来实现的。

我们对该接口在此不进行拓展,只需知道通过main方法传递进来的参数被封装成ApplicationArguments对象即可。关于该接口实例化的步骤我会在后续关于SpringBoot的参数的章节中进行详细讲解,因此在图4-1所示的核心流程图中也没有体现出来。

初始化ConfigurableEnvironment

完成ApplicationArguments参数的准备之后,便开始通过prepareEnvironment方法对ConfigurableEnvironment对象进行初始化操作。

ConfigurableEnvironment接口继承自Environment接口和ConfigurablePropertyResolver,最终都继承自接口PropertyResolver。

ConfigurableEnvironment接口的主要作用是提供当前运行环境的公开接口,比如配置文件profiles各类系统属性和变量的设置、添加、读取、合并等功能。

通过ConfigurableEnvironment接口中方法定义,可以更清楚地了解它的功能,代码如下。

publicinterfaceConfigurableEnvironmentextendsEnvironment,Configurable-PropertyResolver{设置激活的组集合voidsetActiveProfiles(String...profiles);向当前激活的组集合中添加一个profile组voidaddActiveProfile(Stringprofile);设置默认激活的组集合。激活的组集合为空时会使用默认的组集合voidsetDefaultProfiles(String...profiles);//获取当前环境对象中的属性源集合,也就是应用环境变量//属性源集合其实就是滚动鼠标轴或单击,开始截长图//该方法提供了直接配置属性源的MutablePropertySourcesgetPropertySources();//获取虚拟机环境变量,该方法提供J直接配置虚拟机环境变量的入口MapString,0bjectgetSystemProperties();//获取操作系统环境变量//该方法提供了直接配置系统环境变量的入口MapString,objectgetSystemEnvironment();合并指定环境中的配置到当前环境中voidmerge(ConfigurableEnvironmentparent);}

通过接口提供的方法,我们可以看出ConfigurableEnvironment就是围绕着这个“环境”来提供相应的功能,这也是为什么我们也将它称作“环境”。

了解了ConfigurableEnvironment的功能及方法,我们回归到SpringApplication的流程看相关源代码。run方法中调用prepareEnvironment方法相关代码如下。

publicConfigurableApplicationContextrun(String...args){//加载属性配置,包括所有的配置属性(如:application.properties中和外部的属性配置)ConfigurableEnvironmentenvironment=prepareEnvironment(listeners,applicationArguments);}

prepareEnvironment方法的源代码实现如下。

privateConfigurableEnvironmentprepareEnvironment(SpringApplicationRunListenerslisteners,ApplicationArgumentsapplicationArguments){//获取或创建环境ConfigurableEnvironmentenvironment=getOrCreateEnvironment();//配置环境,主要包括PropertySourceslactiveProfiles的配置configureEnvironment(environment,applicationArguments.getSourceArgs());//将ConfigurationPropertySources附加到指定环境中的第一位,并动态跟踪环境的添加或删除ConfigurationPropertySources.attach(environment);//listener环境准备(之前章节已经提到)listeners.environmentPreparedenvironment);//将环境绑定到SpringApplicationbindToSpringApplication(environment);//判断是否定制的环境,如果不是定制的则将环境转换为StandardEnvironmentif(!this.isCustomEnvironment){environment=newEnvironmentConverter(getClassLoader()).convertEnvironmentIfNecessary(environment,deduceEnvironment-Class());//将ConfigurationPropertySources附加到指定环境中的第一位,并动态跟踪环境的添加或删除ConfigurationPropertySources.attach(environment);returnenvironment;}

通过以上代码及注解可知,prepareEnvironment进行了以下的操作。

.获取或创建环境。

.配置环境。

:ConfigurationPropertySources附加到指定环境:将ConfigurationPropertySources附加到指定环境中的第一位,并动态跟踪环境的添加或删除(当前版本新增了该行代码,与最后一步操作相同)。

.设置listener监听事件:前面章节已经讲过,此处主要针对准备环境的监听。

.绑定环境到SpringApplication:将环境绑定到name为“spring.main”的目标上。

.转换环境:判断是否是定制的环境,如果不是定制的,则将环境转换为Standard-Environment。此时判断条件isCustomEnvironment默认为false,在后面的操作中会将其设置为true,如果为true则不再会进行此转换操作。

:ConfigurationPropertySources附加到指定环境:将ConfigurationPropertySources附加到指定环境中的第一位,并动态跟踪环境的添加或删除操作。

下面针对以上步骤挑选部分代码进行相应的讲解。

获取或创建环境

SpringApplication类中通过getOrCreateEnvironment方法来获取或创建环境。在该方法中首先判断环境是否为null,如果不为null则直接返回;如果为null,则根据前面推断出来的WebApplicationType类型来创建指定的环境,代码如下。

privateConfigurableEnvironmentgetOrCreateEnvironment(){if(this.environment!=null){returnthis.environment;//根据不同的应用类型,创建不同的环境实现switch(this.webApplicationType){caseSERVLET:returnnewStandardServletEnvironment();caseREACTIVE:returnnewStandardReactiveWebEnvironment();default:returnnewStandardEnvironment();}

.上面方法中如果environment存在,则直接返回;如果environment不存在,则根据前面步骤中推断获得的WebApplicationType来进行区分创建环境。如果是SERVLET项目则创建标准的Servlet环境StandardServletEnvironment;

如果是REACTIVE项目则创建StandardReactiveWebEnvironment;其他情况则创建标准的非Web的StandardEnvironment。

配置环境

在获得环境变量对象之后,开始对环境变量和参数进行相应的设置,主要包括转换服务的设置、PropertySources的设置和activeProfiles的设置。

SpringApplication类中相关configureEnvironment方法代码如下。

protectedvoidconfigureEnvironment(ConfigurableEnvironmentenvironment,String[]args){//如果为true则获取并设置转换服务f(this.addConversionService){ConversionServiceconversionService=ApplicationConversionService.getSharedInstance();environment.setConversionService((ConfigurableConversionService)conversion-Service);//配置PropertySourcesconfigurePropertySources(environment,args);//配置ProfilesconfigureProfiles(environment,args);}

在以上代码中,首先判断addConversionService变量是否为true,也就是判断是否需要添加转换服务,如果需要,则获取转换服务实例,并对环境设置转换服务。随后进行PropertySources和Profiles的配置。

其中configurePropertySources方法对PropertySources进行配置,代码如下。

protectedvoidconfigurePropertySources(ConfigurableEnvironmentenvironmenString[]args){//获得环境中的属性资源信息MutablePropertySourcessources=environment.getPropertySources();//如果默认属性配置存在则将其放置于属性资源的最后位置if(this.defaultProperties!=null!this.defaultProperties.isEmpty())sources.addLast(newMapPropertySource("defaultProperties",this.defaultProperties));//如果命令行属性存在if(this.addCommandLinePropertiesargs.length0){Stringname=CommandLinePropertySource.COMMAND_LINE_PROPERTY__SOURCE_NAME;//如果默认属性资源中不包含该命令,则将命令行属性放置在第一位,如果包含,则通过Composite-PropertySource进行处理if(sources.contains(name)){PropertySource?source=sources.get(name);CompositePropertySource

1
查看完整版本: 运行源码分析初始化Application