1.springboot debug
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.springboot debug相关的知识,希望对你有一定的参考价值。
参考技术A 1.初始化SpringApplicationthis.resourceLoader = resourceLoader;
Assert.notNull(primarySources,"PrimarySources must not be null");
this.primarySources =new LinkedHashSet<>(Arrays.asList(primarySources));
this.webApplicationType = WebApplicationType.deduceFromClasspath();
setInitializers((Collection) getSpringFactoriesInstances(ApplicationContextInitializer.class));
setListeners((Collection) getSpringFactoriesInstances(ApplicationListener.class));
this.mainApplicationClass = deduceMainApplicationClass();
1.loadSpringFactories类 :先加载spring-boot和spring-autoconfig 下的spring-factories 的properties key value
2.实例化ApplicationContextInitializer 和ApplicationListener 的实现类,并加入到当前上下文
Springboot2+Quartz+debug源码教程#yyds干货盘点#
前期准备
下面四大步骤,可以直接跳到第五步,进入正题!
以上是关于1.springboot debug的主要内容,如果未能解决你的问题,请参考以下文章