中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Springboot中ConfigFileApplicationListener的作用是什么

發布時間:2021-06-21 17:10:49 來源:億速云 閱讀:739 作者:Leah 欄目:大數據

今天就跟大家聊聊有關Springboot中ConfigFileApplicationListener的作用是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

    如下圖1所示:

    Springboot中ConfigFileApplicationListener的作用是什么

                                                                                     圖1

    ConfigFileApplicationListener實現了ApplicationListener,所以會收到Springboot的Event事件,如下List-1所示onApplicationEvent收到ApplicationEnvironmentPreparedEvent事件后,通過onApplicationEnvironmentPreparedEvent方法,獲取spring.factories中的所有EnvironmentPostProcessor,并逐個調用EnvironmentPostProcessor的postProcessEnvironment方法。

    List-1

@Override
public void onApplicationEvent(ApplicationEvent event) {
	if (event instanceof ApplicationEnvironmentPreparedEvent) {
		onApplicationEnvironmentPreparedEvent(
				(ApplicationEnvironmentPreparedEvent) event);
	}
	if (event instanceof ApplicationPreparedEvent) {
		onApplicationPreparedEvent(event);
	}
}

private void onApplicationEnvironmentPreparedEvent(
		ApplicationEnvironmentPreparedEvent event) {
	List<EnvironmentPostProcessor> postProcessors = loadPostProcessors();
	postProcessors.add(this);
	AnnotationAwareOrderComparator.sort(postProcessors);
	for (EnvironmentPostProcessor postProcessor : postProcessors) {
		postProcessor.postProcessEnvironment(event.getEnvironment(),
				event.getSpringApplication());
	}
}

List<EnvironmentPostProcessor> loadPostProcessors() {
	return SpringFactoriesLoader.loadFactories(EnvironmentPostProcessor.class,
			getClass().getClassLoader());
}

    List-1中onApplicationEnvironmentPreparedEvent方法里"postProcessors.add(this)",把當前實例也加入其中,所以來看看ConfigFileApplicationListener的postProcessEnvironment,如下List-2所示:

    List-2

@Override
public void postProcessEnvironment(ConfigurableEnvironment environment,
		SpringApplication application) {
	addPropertySources(environment, application.getResourceLoader());
}
...
protected void addPropertySources(ConfigurableEnvironment environment,
		ResourceLoader resourceLoader) {
	RandomValuePropertySource.addToEnvironment(environment);
	new Loader(environment, resourceLoader).load();
}

    List-2中的Loader是個內部類,在ConfigFileApplicationListener中,Loader的構造方法如下List-3所示,從spring.factories中獲得PropertySourceLoader,實現類有倆個,即PropertiesPropertySourceLoader和YamlPropertySourceLoader。

    List-3

...
Loader(ConfigurableEnvironment environment, ResourceLoader resourceLoader) {
	this.environment = environment;
	this.resourceLoader = (resourceLoader != null) ? resourceLoader
			: new DefaultResourceLoader();
	this.propertySourceLoaders = SpringFactoriesLoader.loadFactories(
			PropertySourceLoader.class, getClass().getClassLoader());
}
...

    List-4

# PropertySource Loaders
org.springframework.boot.env.PropertySourceLoader=\
org.springframework.boot.env.PropertiesPropertySourceLoader,\
org.springframework.boot.env.YamlPropertySourceLoader

    PropertiesPropertySourceLoader如下List-5,它支持的有properties和xml文件,并最終解析為Properties,封轉到PropertiesPropertySource中。

    List-5

public class PropertiesPropertySourceLoader implements PropertySourceLoader {
 
    public String[] getFileExtensions() {
        return new String[]{"properties", "xml"};
    }

    public PropertySource<?> load(String name, Resource resource, String profile) throws IOException {
        if (profile == null) {
            Properties properties = PropertiesLoaderUtils.loadProperties(resource);
            if (!properties.isEmpty()) {
                return new PropertiesPropertySource(name, properties);
            }
        }
        return null;
    }
}

    YamlPropertySourceLoader如下List-6所示,支持的文件有yml和yaml,將yaml文件內容解析為map,之后封裝到MapPropertySource。

    List-6

public class YamlPropertySourceLoader implements PropertySourceLoader {
    public String[] getFileExtensions() {
        return new String[]{"yml", "yaml"};
    }

    public PropertySource<?> load(String name, Resource resource, String profile) throws IOException {
        if (ClassUtils.isPresent("org.yaml.snakeyaml.Yaml", (ClassLoader)null)) {
            YamlPropertySourceLoader.Processor processor = new YamlPropertySourceLoader.Processor(resource, profile);
            Map<String, Object> source = processor.process();
            if (!source.isEmpty()) {
                return new MapPropertySource(name, source);
            }
        }
        return null;
	}
	...

    從ConfigFileApplicationListener中可以看到,Springboot通過事件觸發解析配置文件的操作(如下List-7中的listeners.environmentPrepared(environment)處),其中properties和xml文件解析到JDK的Properties中,之后加入到Springboot的evironment中;yml和yaml文件解析到JDK的map中,之后加入到evironment中。

    List-7

private ConfigurableEnvironment prepareEnvironment(SpringApplicationRunListeners listeners,ApplicationArguments applicationArguments) {
	// Create and configure the environment
	ConfigurableEnvironment environment = getOrCreateEnvironment();
	configureEnvironment(environment, applicationArguments.getSourceArgs());
	listeners.environmentPrepared(environment);
	bindToSpringApplication(environment);
	if (!this.isCustomEnvironment) {
	environment = new EnvironmentConverter(getClassLoader())
			.convertEnvironmentIfNecessary(environment, deduceEnvironmentClass());
	}
	ConfigurationPropertySources.attach(environment);
	return environment;
}
...

看完上述內容,你們對Springboot中ConfigFileApplicationListener的作用是什么有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

秭归县| 泰顺县| 大余县| 虞城县| 鸡西市| 河东区| 徐州市| 曲沃县| 涿州市| 临桂县| 浠水县| 涞源县| 甘孜县| 长宁区| 张家口市| 类乌齐县| 青川县| 鲜城| 长武县| 铁岭县| 大渡口区| 全州县| 梁平县| 武定县| 筠连县| 广东省| 巫溪县| 灌阳县| 城口县| 汝阳县| 黄山市| 县级市| 贡嘎县| 仲巴县| 抚州市| 金平| 玉屏| 楚雄市| 淮阳县| 汪清县| 淮北市|