在我們實(shí)際工作中睦裳,總會(huì)遇到這樣需求,在項(xiàng)目啟動(dòng)的時(shí)候需要做一些初始化的操作挤忙,比如初始化線程池歹鱼,提前加載好加密證書等。今天就給大家介紹一個(gè) Spring Boot 神器眨猎,專門幫助大家解決項(xiàng)目啟動(dòng)初始化資源操作抑进。
這個(gè)神器就是 CommandLineRunner, CommandLineRunner 接口的 Component 會(huì)在所有 SpringBeans都初始化之后睡陪, SpringApplication.run()之前執(zhí)行寺渗,非常適合在應(yīng)用程序啟動(dòng)之初進(jìn)行一些數(shù)據(jù)初始化的工作匿情。
接下來我們就運(yùn)用案例測(cè)試它如何使用,在測(cè)試之前在啟動(dòng)類加兩行打印提示信殊,方便我們識(shí)別 CommandLineRunner 的執(zhí)行時(shí)機(jī)炬称。
@SpringBootApplication
public class CommandLineRunnerApplication {
public static void main(String[] args) {
System.out.println("The service to start.");
SpringApplication.run(CommandLineRunnerApplication.class, args);
System . out .println( "The service has started." ); }}接下來我們直接創(chuàng)建一個(gè)類繼承 CommandLineRunner ,并實(shí)現(xiàn)它的 run() 方法涡拘。
@Component
public class Runner implements CommandLineRunner {
@Override
public void run(String... args) throwsException{
System.out.println("The Runner start to initialize ...");
}
}
我們?cè)?run() 方法中打印了一些參數(shù)來看出它的執(zhí)行時(shí)機(jī)转砖。完成之后啟動(dòng)項(xiàng)目進(jìn)行測(cè)試:
...
The
service to start.
:: Spring Boot :: (v2.0.0.RELEASE)
...
2018-04-21 22:21:34.706 INFO 27016 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2018-04-21 22:21:34.710 INFO 27016 --- [ main] com.neo.CommandLineRunnerApplication : Started CommandLineRunnerApplication in 3.796 seconds (JVM running for 5.128)
The Runner start to initialize ...
The service has started.
根據(jù)控制臺(tái)的打印信息我們可以看出 CommandLineRunner 中的方法會(huì)在 Spring Boot 容器加載之后執(zhí)行,執(zhí)行完成后項(xiàng)目啟動(dòng)完成鲸伴。
如果我們?cè)趩?dòng)容器的時(shí)候需要初始化很多資源府蔗,并且初始化資源相互之間有序,那如何保證不同的 CommandLineRunner 的執(zhí)行順序呢汞窗?Spring Boot 也給出了解決方案姓赤。那就是使用 @Order 注解。
我們創(chuàng)建兩個(gè) CommandLineRunner 的實(shí)現(xiàn)類來進(jìn)行測(cè)試:
第一個(gè)實(shí)現(xiàn)類:
@Component
@Order(1)
public class OrderRunner1 implements CommandLineRunner {
@Override
publicvoid run(String... args) throwsException {
System.out.println("The OrderRunner1 start to initialize ...");
}
}
第二個(gè)實(shí)現(xiàn)類:
@Component
@Order(2)
public class OrderRunner2 implements CommandLineRunner {
@Override
public void run(String... args) throwsException {
System.out.println("The OrderRunner2 start to initialize ...");
}
}
添加完成之后重新啟動(dòng)仲吏,觀察執(zhí)行順序:
...
The
service to start.
:: Spring Boot :: (v2.0.0.RELEASE)
...
2018-04-21 22:21:34.706 INFO 27016 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2018-04-21 22:21:34.710 INFO 27016 --- [ main] com.neo.CommandLineRunnerApplication : Started CommandLineRunnerApplication in 3.796 seconds (JVM running for 5.128)
The OrderRunner1 start to initialize ...
The OrderRunner2 start to initialize ...
The Runner start to initialize ...
The service has started.
通過控制臺(tái)的輸出我們發(fā)現(xiàn)不铆,添加 @Order 注解的實(shí)現(xiàn)類最先執(zhí)行,并且 @Order()里面的值越小啟動(dòng)越早裹唆。
在實(shí)踐中誓斥,使用 ApplicationRunner也可以達(dá)到相同的目的,兩著差別不大许帐。
在此我向大家推薦一個(gè)架構(gòu)學(xué)習(xí)交流群劳坑。交流學(xué)習(xí)群號(hào):938837867 里面會(huì)分享一些資深架構(gòu)師錄制的視頻錄像:有Spring,MyBatis成畦,Netty源碼分析距芬,高并發(fā)、高性能循帐、分布式框仔、微服務(wù)架構(gòu)的原理,JVM性能優(yōu)化拄养、分布式架構(gòu)等這些成為架構(gòu)師必備的知識(shí)體系离斩。還能領(lǐng)取免費(fèi)的學(xué)習(xí)資源,目前受益良多