SpringBoot 创建容器的实现
作者:jiao个朋友 时间:2022-04-03 08:41:02
spring 容器的创建对应 SpringApplication 中 run 中调用的 createApplicationContext 方法。这里创建了一个 web 容器,接下就进去 prepareContext 容器准备阶段:
private void prepareContext(ConfigurableApplicationContext context, ConfigurableEnvironment environment,
SpringApplicationRunListeners listeners, ApplicationArguments applicationArguments, Banner printedBanner) {
//为容器设置环境
context.setEnvironment(environment);
//这里的空实现留给开发者扩展,设置数据转换的ConversionService
postProcessApplicationContext(context);
//执行容器中的 Initializers 的 initialize 方法
applyInitializers(context);
listeners.contextPrepared(context);
if (this.logStartupInfo) {
logStartupInfo(context.getParent() == null);
logStartupProfileInfo(context);
}
// Add boot specific singleton beans
ConfigurableListableBeanFactory beanFactory = context.getBeanFactory();
beanFactory.registerSingleton("springApplicationArguments", applicationArguments);
if (printedBanner != null) {
beanFactory.registerSingleton("springBootBanner", printedBanner);
}
if (beanFactory instanceof DefaultListableBeanFactory) {
((DefaultListableBeanFactory) beanFactory)
.setAllowBeanDefinitionOverriding(this.allowBeanDefinitionOverriding);
}
if (this.lazyInitialization) {
context.addBeanFactoryPostProcessor(new LazyInitializationBeanFactoryPostProcessor());
}
// Load the sources
Set<Object> sources = getAllSources();
Assert.notEmpty(sources, "Sources must not be empty");
load(context, sources.toArray(new Object[0]));
listeners.contextLoaded(context);
}
看一下这里的 load 方法,这里主要把我们的启动类作为 Bean 注册到了 Spring 的容器中。
protected void load(ApplicationContext context, Object[] sources) {
if (logger.isDebugEnabled()) {
logger.debug("Loading source " + StringUtils.arrayToCommaDelimitedString(sources));
}
BeanDefinitionLoader loader = createBeanDefinitionLoader(getBeanDefinitionRegistry(context), sources);
if (this.beanNameGenerator != null) {
loader.setBeanNameGenerator(this.beanNameGenerator);
}
if (this.resourceLoader != null) {
loader.setResourceLoader(this.resourceLoader);
}
if (this.environment != null) {
loader.setEnvironment(this.environment);
}
loader.load();
}
/**
* Load the sources into the reader.
* @return the number of loaded beans
*/
int load() {
int count = 0;
for (Object source : this.sources) {
count += load(source);
}
return count;
}
private int load(Object source) {
Assert.notNull(source, "Source must not be null");
if (source instanceof Class<?>) {
return load((Class<?>) source);
}
if (source instanceof Resource) {
return load((Resource) source);
}
if (source instanceof Package) {
return load((Package) source);
}
if (source instanceof CharSequence) {
return load((CharSequence) source);
}
throw new IllegalArgumentException("Invalid source type " + source.getClass());
}
private int load(Class<?> source) {
if (isGroovyPresent() && GroovyBeanDefinitionSource.class.isAssignableFrom(source)) {
// Any GroovyLoaders added in beans{} DSL can contribute beans here
GroovyBeanDefinitionSource loader = BeanUtils.instantiateClass(source, GroovyBeanDefinitionSource.class);
load(loader);
}
if (isEligible(source)) {
this.annotatedReader.register(source);
return 1;
}
return 0;
}
再来看下 contextLoaded 方法,这里将上下文设置到 * 中,同时也把 * 添加到上下文中。最后发布了一个 ApplicationPreparedEvent 事件。
public void contextLoaded(ConfigurableApplicationContext context) {
for (ApplicationListener<?> listener : this.application.getListeners()) {
if (listener instanceof ApplicationContextAware) {
((ApplicationContextAware) listener).setApplicationContext(context);
}
context.addApplicationListener(listener);
}
this.initialMulticaster.multicastEvent(new ApplicationPreparedEvent(this.application, this.args, context));
}
来源:https://segmentfault.com/a/1190000037447793
标签:SpringBoot,创建,容器
0
投稿
猜你喜欢
用C语言实现五子棋小游戏
2023-01-19 12:56:58
C#中四步轻松使用log4net记录本地日志的方法
2021-12-22 02:23:16
Android编程中activity的完整生命周期实例详解
2022-12-24 05:39:40
Android新闻广告条滚动效果
2023-05-13 10:30:37
Android入门之onTouchEvent触碰事件的示例详解
2021-08-31 14:27:58
Android开发中多进程共享数据简析
2023-10-10 05:17:04
Android创建和使用数据库SQLIte
2023-04-03 17:18:01
Java比较两个List的值是否相等的方法
2022-12-31 15:41:37
C#简单实现显示中文格式星期几的方法
2021-09-08 12:27:05
Java单例模式的应用示例
2023-08-22 06:54:03
Android基于ViewPager实现的应用欢迎界面完整实例
2021-10-02 23:01:52
Springboot集成graylog及配置过程解析
2023-06-18 17:15:02
Java中super和this关键字详解
2023-03-18 15:49:08
java报错:找不到或无法加载主类的解决方法简单粗暴
2023-03-29 17:20:58
C# GDI+实现时钟表盘
2023-06-20 07:11:32
SpringBoot使用Redisson实现分布式锁(秒杀系统)
2022-07-17 05:15:41
Java实现部门员工管理
2021-07-21 21:40:41
Android ImageView绘制圆角效果
2023-11-22 22:59:15
Android ToggleButton 详解及实例代码
2022-09-11 03:58:02
Java使用TCP实现在线聊天的示例代码
2021-10-16 23:49:53