前面的話
首先一個(gè)最簡單的springboot的例子引入本主題捷雕。
@SpringBootApplication
public class StudyApplication {
public static void main(String[] args) {
SpringApplication.run(StudyApplication.class);
}
}
其中包依賴也是最簡單的。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.spring.study</groupId>
<artifactId>spring-study</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter</artifactId>-->
<!--<version>2.2.1.RELEASE</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
</dependencies>
</project>
這里就使用springboot的web方式壹甥,引入當(dāng)前最新版本2.2.1.
直接指向main方法救巷,就可以啟動(dòng)一個(gè)簡單的springboot,端口使用默認(rèn)的8080句柠。
例子有了浦译,就可以直接debug代碼棒假,走讀之。
springboot啟動(dòng)過程代碼走讀
run方法的實(shí)現(xiàn)代碼如下:
/**
* Static helper that can be used to run a {@link SpringApplication} from the
* specified sources using default settings and user supplied arguments.
* @param primarySources the primary sources to load
* @param args the application arguments (usually passed from a Java main method)
* @return the running {@link ApplicationContext}
*/
public static ConfigurableApplicationContext run(Class<?>[] primarySources, String[] args) {
return new SpringApplication(primarySources).run(args);
}
接下來看如何初始化SpringApplication
public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) {
this.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();
}
從代碼可以看出精盅,這里主要做了如下幾件事情:
- 確定當(dāng)前應(yīng)用類型帽哑。
deduceFromClasspath
.springboot中主要有三種應(yīng)用類型,分別是REACTIVE
,SERVLET
,NONE(普通類型)
叹俏,其中SERVLET
是默認(rèn)類型妻枕。 - 通過SPI方式,讀取spring.factories粘驰,設(shè)置應(yīng)用上下文初始化類和ApplicationListener屡谐。
- 確定程序的入口類
以上,就把SpringApplication
的實(shí)例創(chuàng)建出來了蝌数。
接下來就是看run
方法了愕掏。
先上代碼:
public ConfigurableApplicationContext run(String... args) {
StopWatch stopWatch = new StopWatch();
stopWatch.start();
ConfigurableApplicationContext context = null;
Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>();
configureHeadlessProperty();
SpringApplicationRunListeners listeners = getRunListeners(args);
listeners.starting();
try {
ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);
ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments);
configureIgnoreBeanInfo(environment);
Banner printedBanner = printBanner(environment);
context = createApplicationContext();
exceptionReporters = getSpringFactoriesInstances(SpringBootExceptionReporter.class,
new Class[] { ConfigurableApplicationContext.class }, context);
prepareContext(context, environment, listeners, applicationArguments, printedBanner);
refreshContext(context);
afterRefresh(context, applicationArguments);
stopWatch.stop();
if (this.logStartupInfo) {
new StartupInfoLogger(this.mainApplicationClass).logStarted(getApplicationLog(), stopWatch);
}
listeners.started(context);
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;
}
這里主要做了如下幾件事情:
- 初始化并啟動(dòng)一個(gè)計(jì)時(shí)器
- 設(shè)置Headless參數(shù)
- 通過spi方式初始化springboot啟動(dòng)過程監(jiān)聽。
- listeners.starting(); 發(fā)送一個(gè)ApplicationStartingEvent這個(gè)類型的事件籽前。該事件的消費(fèi)者在springboot中有兩個(gè)亭珍,分別是
BackgroundPreinitializer
和LoggingApplicationListener
.BackgroundPreinitializer
是springboot異步初始化一些相對耗時(shí)的操作敷钾,減少啟動(dòng)時(shí)間枝哄,比如各種類型轉(zhuǎn)換器初始化,校驗(yàn)器初始化阻荒,http消息轉(zhuǎn)換器初始化挠锥,Jackson轉(zhuǎn)換器初始化等。LoggingApplicationListener
主要是初始化日志系統(tǒng)侨赡。 - 裝配參數(shù)和準(zhǔn)備上下文環(huán)境及打印banner圖蓖租,即我們經(jīng)常見到的springboot的logo圖。
- 初始化applicationContext羊壹,當(dāng)我們啟動(dòng)的是一個(gè)
SERVLET
容器時(shí)蓖宦,則applicationContext為org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext
,當(dāng)啟動(dòng)的是一個(gè)reactive容器,則初始化為org.springframework.boot.web.reactive.context.AnnotationConfigReactiveWebServerApplicationContext
油猫,都不是稠茂,則默認(rèn)為org.springframework.context.annotation.AnnotationConfigApplicationContext
。 - 初始化異常上報(bào)類情妖。也是通過spi機(jī)制實(shí)現(xiàn)的睬关。
-
prepareContext
主要是做一些applicationContext的前期的初始化工作。如設(shè)置environment毡证,設(shè)置一些內(nèi)部使用的bean电爹,調(diào)用上文提到的一些上下文初始化類ApplicationContextInitializer
。觸發(fā)ApplicationContextInitializedEvent
事件料睛。設(shè)置beanFactory相關(guān)的參數(shù)及加載資源丐箩,并觸發(fā)ApplicationPreparedEvent
事件摇邦。 -
refreshContext(context)
,這一步是最重要的一步屎勘,所有的bean初始化涎嚼,注解的處理都在這一步,這一步與spring的基礎(chǔ)功能緊密結(jié)合挑秉。直接調(diào)用spring的入口法梯,refresh()方法。這里只是對整個(gè)啟動(dòng)過程做一下介紹犀概,對這塊接下來的文章中會有詳細(xì)的介紹立哑。 -
afterRefresh
后置處理,默認(rèn)為空方法姻灶。 - 計(jì)時(shí)結(jié)束铛绰。觸發(fā)
ApplicationStartedEvent
事件。 - 執(zhí)行
ApplicationRunner
和CommandLineRunner
产喉,這兩個(gè)接口主要是在容器啟動(dòng)完成后捂掰,一些用戶定制化的場景。如加載某些配置曾沈,建立一些連接等这嚣。
至此,springboot就啟動(dòng)完成了塞俱。接下來我們就可以來進(jìn)入每個(gè)步驟進(jìn)行詳細(xì)的走讀與討論了姐帚。