SpringBoot 的run方法执行,内部执行并未去彻底了解到,可能是自我的基础未达到,很多思想都没能去理解(大概也看有一周的时间了(当然也不是每天一直看,一天大概回去看一两个小时)),纯属小白,这篇文章纯属笔记。
会先在堆中new 一个SpringApplication对象(并调用构造器为SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) ) 这里注意: SpringApplication中有部分静态属性、还有一些默认属性回去加载;
public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources){ this.resourceLoader = resourceLoader; //资源加载器 默认传参数为null Assert.notNull(primarySources, "PrimarySources must not be null"); // 用来判断传入的class是否为null、null则抛出String信息
this.primarySources = new LinkedHashSet<>(Arrays.asList(primarySources)); // 参数数组转换为集合
this.webApplicationType = WebApplicationType.deduceFromClasspath(); // 映射以公共Java语言类名为键,对应的类为值。
setInitializers((Collection) getSpringFactoriesInstances(ApplicationContextInitializer.class)); // 设置初始化类集合(spring工厂上下文)
setListeners((Collection) getSpringFactoriesInstances(ApplicationListener.class)); // 设置初始化监听对象(spring工厂)
this.mainApplicationClass = deduceMainApplicationClass(); // 返回堆栈中的main方法所在的class文件
}
// 初始话结束调用run()方法
public ConfigurableApplicationContext run(String... args) {
StopWatch stopWatch = new StopWatch(); //springboot中的计时对象 stopWatch.start(); // 计时开始
ConfigurableApplicationContext context = null; // 初始化配置对象 用于返回 Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>();// 初始化springboot异常记录对象集合
configureHeadlessProperty();// 配置其它属性
SpringApplicationRunListeners listeners = getRunListeners(args); // 配置运行时监听对象(属性有日志对象,监听对象集合)
listeners.starting(); // 遍历集合对象调用每个对象相应的实现
try {
ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);// 设置应用参数
ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments); // 准备环境(创建标准的服务环境StandardServletEnvironment[里面的属性都是系统默认的]){ 获取配置环境对象;配置环境对象;spring应用运行监听对象会为该环境对象做一些准备工作;把该环境对象赋值给绑定对象的容器中; 判断是否是定制的环境,不是则创建环境转换器去调用convertEnvironmentIfNecessary(environment,deduceEnvironmentClass())进行转换; 附加到环境属性源上 }
configureIgnoreBeanInfo(environment); // 配置忽略对象信息
Banner printedBanner = printBanner(environment);
context = createApplicationContext(); // 创建应用上下文(通过获取上下文的class去创建对象)
exceptionReporters = getSpringFactoriesInstances(SpringBootExceptionReporter.class, new Class[] { ConfigurableApplicationContext.class }, context); // 获取spring工厂的示例(通过获取工厂集合中的class去一一创 建对象返回相应的对象集合)
prepareContext(context, environment, listeners, applicationArguments, printedBanner); // 准备上下文 { 设置上下文的环境;上下文对象配置;初始化上下文;监听者上下文准备(遍历监听者集合为每个监听者调用各自的contextPrepared()方法); 启动日志信息; } refreshContext(context); // 刷新上下文对象
afterRefresh(context, applicationArguments); // 之后刷新
stopWatch.stop(); // 计时结束
if (this.logStartupInfo) {
new StartupInfoLogger(this.mainApplicationClass).logStarted(getApplicationLog(), stopWatch); // 开启一个日志对象
}
listeners.started(context); // 监听者开启上下文(遍历监听者集合为每个监听者调用各自的started()方法)
callRunners(context, applicationArguments);
} catch (Throwable ex) {
handleRunFailure(context, ex, exceptionReporters, listeners);
throw new IllegalStateException(ex);
}
try { listeners.running(context); }
catch (Throwable ex) {
handleRunFailure(context, ex, exceptionReporters, null);
throw new IllegalStateException(ex);
}
return context;
}
暂未整理完;
SpringBoot 的 run方法
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- SpringApplication.run()的实现原理。 return new SpringApplicatio...