目前開發(fā)的SpringBoot項(xiàng)目在啟動的時(shí)候需要預(yù)加載一些資源。而如何實(shí)現(xiàn)啟動過程中執(zhí)行代碼,或啟動成功后執(zhí)行,是有很多種方式可以選擇,我們可以在static代碼塊中實(shí)現(xiàn),也可以在構(gòu)造方法里實(shí)現(xiàn),也可以使用@PostConstruct
注解實(shí)現(xiàn)。
當(dāng)然也可以去實(shí)現(xiàn)Spring的ApplicationRunner
與CommandLineRunner
接口去實(shí)現(xiàn)啟動后運(yùn)行的功能。在這里整理一下,在這些位置執(zhí)行的區(qū)別以及加載順序。
java自身的啟動時(shí)加載方式
static代碼塊
static靜態(tài)代碼塊,在類加載的時(shí)候即自動執(zhí)行。
構(gòu)造方法
在對象初始化時(shí)執(zhí)行。執(zhí)行順序在static靜態(tài)代碼塊之后。
Spring啟動時(shí)加載方式
@PostConstruct注解
PostConstruct注解使用在方法上,這個(gè)方法在對象依賴注入初始化之后執(zhí)行。
ApplicationRunner和CommandLineRunner
SpringBoot提供了兩個(gè)接口來實(shí)現(xiàn)Spring容器啟動完成后執(zhí)行的功能,兩個(gè)接口分別為CommandLineRunner
和ApplicationRunner
。
這兩個(gè)接口需要實(shí)現(xiàn)一個(gè)run方法,將代碼在run中實(shí)現(xiàn)即可。這兩個(gè)接口功能基本一致,其區(qū)別在于run方法的入?yún)ⅰ?/span>ApplicationRunner
的run方法入?yún)?/span>ApplicationArguments
,為CommandLineRunner
的run方法入?yún)镾tring數(shù)組。
何為ApplicationArguments
官方文檔解釋為:
Provides access to the arguments that were used to run a SpringApplication.
在Spring應(yīng)用運(yùn)行時(shí)使用的訪問應(yīng)用參數(shù)。即我們可以獲取到SpringApplication.run(…)
的應(yīng)用參數(shù)。
Order注解
當(dāng)有多個(gè)類實(shí)現(xiàn)了CommandLineRunner
和ApplicationRunner
接口時(shí),可以通過在類上添加@Order注解來設(shè)定運(yùn)行順序。
代碼測試
為了測試啟動時(shí)運(yùn)行的效果和順序,編寫幾個(gè)測試代碼來運(yùn)行看看。
TestPostConstruct
@Component
publicclassTestPostConstruct{
static{
System.out.println("static");
}
publicTestPostConstruct(){
System.out.println("constructer");
}
@PostConstruct
publicvoidinit(){
System.out.println("PostConstruct");
}
}
TestApplicationRunner
@Component
@Order(1)
publicclassTestApplicationRunnerimplementsApplicationRunner{
@Override
publicvoidrun(ApplicationArgumentsapplicationArguments)throwsException{
System.out.println("order1:TestApplicationRunner");
}
}
TestCommandLineRunner
@Component
@Order(2)
publicclassTestCommandLineRunnerimplementsCommandLineRunner{
@Override
publicvoidrun(String...strings)throwsException{
System.out.println("order2:TestCommandLineRunner");
}
}
執(zhí)行結(jié)果

總結(jié)
Spring應(yīng)用啟動過程中,肯定是要自動掃描有@Component
注解的類,加載類并初始化對象進(jìn)行自動注入。加載類時(shí)首先要執(zhí)行static靜態(tài)代碼塊中的代碼,之后再初始化對象時(shí)會執(zhí)行構(gòu)造方法。
在對象注入完成后,調(diào)用帶有@PostConstruct
注解的方法。當(dāng)容器啟動成功后,再根據(jù)@Order注解的順序調(diào)用CommandLineRunner
和ApplicationRunner
接口類中的run方法。
因此,加載順序?yàn)?/span>static
>constructer
>@PostConstruct
>CommandLineRunner
和ApplicationRunner
.
-
JAVA
+關(guān)注
關(guān)注
20文章
2982瀏覽量
106456 -
代碼
+關(guān)注
關(guān)注
30文章
4875瀏覽量
69952 -
spring
+關(guān)注
關(guān)注
0文章
340瀏覽量
14764 -
SpringBoot
+關(guān)注
關(guān)注
0文章
175瀏覽量
271
原文標(biāo)題:SpringBoot 啟動時(shí)自動執(zhí)行代碼的幾種方式,還有誰不會??
文章出處:【微信號:AndroidPush,微信公眾號:Android編程精選】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
STM32的上電啟動過程分享
AIC3254啟動過程是怎樣的?需要功能調(diào)節(jié)延時(shí),請問怎么實(shí)現(xiàn)?
負(fù)載電容對電源轉(zhuǎn)換器啟動過程的影響

PA3113D2在系統(tǒng)啟動過程中會出現(xiàn)一個(gè)POP聲,請問是什么原因造成的?
使用pahomqtt啟動過程中pipe_fops_open時(shí)出現(xiàn)rt_condvar_timedwait ,如何解決?
YTM32的HA系列微控制器啟動過程詳解

評論