Springboot内置ApplicationContextInitializer--ServerPortInfoApplicationContextInitializer

源码分析

本文代码基于 Springboot 2.1.0

package org.springframework.boot.web.context;

import java.util.HashMap;
import java.util.Map;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.web.server.WebServer;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ApplicationListener;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.Environment;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.MutablePropertySources;
import org.springframework.core.env.PropertySource;
import org.springframework.util.StringUtils;

/**
 * ApplicationContextInitializer that sets Environment properties for the
 * ports that WebServer servers are actually listening on. The property
 * "local.server.port" can be injected directly into tests using
 * Value @Value or obtained via the Environment.
 * 
 * 即是一个ApplicationContextInitializer也是一个ApplicationListener,应用上下文
 * 初始化时将自己作为一个ApplicationListener注册到应用上下文,关注事件WebServerInitializedEvent,
 * 在该事件发生时向环境属性对象中添加一个属性对象"local.server.port",值是
 * WebServer当前使用的监听端口。这样的话,"local.server.port"就可以通过注解@Value
 * 的方式直接注入到测试中,或者通过Environment对象获得:
 * environment.getProperty("local.server.port")
 * 
 * If the WebServerInitializedEvent has a
 * WebServerApplicationContext#getServerNamespace() server namespace , it will be
 * used to construct the property name. For example, the "management" actuator context
 * will have the property name "local.management.port".
 * 
 * Properties are automatically propagated up to any parent context.
 *
 * @author Dave Syer
 * @author Phillip Webb
 * @since 2.0.0
 */
public class ServerPortInfoApplicationContextInitializer
		implements ApplicationContextInitializer<ConfigurableApplicationContext>,
		ApplicationListener<WebServerInitializedEvent> {

	@Override
	public void initialize(ConfigurableApplicationContext applicationContext) {
		// 应用上下文初始化过程中将自己作为一个ApplicationListener注册到应用上下文,
		// 关注的事件是WebServerInitializedEvent
		applicationContext.addApplicationListener(this);
	}

	@Override
	public void onApplicationEvent(WebServerInitializedEvent event) {
		// 作为ApplicationListener时的任务:WebServerInitializedEvent 事件发生时,
		// 将当前Web服务器监听端口设置到环境属性local.server.port(通常是这个名字,从下面
		的代码来看,也有可能是其他名字)
		String propertyName = "local." + getName(event.getApplicationContext()) + ".port";
		setPortProperty(event.getApplicationContext(), propertyName,
				event.getWebServer().getPort());
	}

	private String getName(WebServerApplicationContext context) {
		// 如果制定了名字使用指定的名字否则使用缺省名称 server
		String name = context.getServerNamespace();
		return StringUtils.hasText(name) ? name : "server";
	}

	private void setPortProperty(ApplicationContext context, String propertyName,
			int port) {
		if (context instanceof ConfigurableApplicationContext) {
			// 将端口信息设置到应用上下文的环境属性中去
			setPortProperty(((ConfigurableApplicationContext) context).getEnvironment(),
					propertyName, port);
		}
		if (context.getParent() != null) {
			// 如果当前应用上下文的双亲应用上下文存在,则把该属性设置向上传播
			setPortProperty(context.getParent(), propertyName, port);
		}
	}

	@SuppressWarnings("unchecked")
	private void setPortProperty(ConfigurableEnvironment environment, String propertyName,
			int port) {
		// 获取环境对象environment中的属性源server.ports,如果不存在则先创建它	
		MutablePropertySources sources = environment.getPropertySources();
		PropertySource<?> source = sources.get("server.ports");
		if (source == null) {
			source = new MapPropertySource("server.ports", new HashMap<>());
			sources.addFirst(source);
		}
		// 将端口名称/值设置到环境对象environment的属性源server.ports中去
		((Map<String, Object>) source.getSource()).put(propertyName, port);
	}

}

相关文章

Springboot 内置ApplicationContextInitializer

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值