Spring Boot中初始化資源的幾種方式
假設有這麼一個需求,要求在專案啟動過程中,完成執行緒池的初始化,加密證照載入等功能,你會怎麼做?如果沒想好答案,請接著往下看。今天介紹幾種在Spring Boot中進行資源初始化的方式,幫助大家解決和回答這個問題。
CommandLineRunner
- 定義初始化類
MyCommandLineRunner
- 實現
CommandLineRunner
介面,並實現它的run()
方法,在該方法中編寫初始化邏輯 - 註冊成Bean,新增
@Component
註解即可 - 示例程式碼如下:
@Component
public class MyCommandLineRunner implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println("...init resources by implements CommandLineRunner");
}
}
實現了 CommandLineRunner 介面的 Component 會在所有 Spring Beans 初始化完成之後, 在 SpringApplication.run() 執行之前完成。下面通過加兩行列印來驗證我們的測試。
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
System.out.println("... start SpringApplication.run()");
SpringApplication.run(DemoApplication.class, args);
System.out.println("... end SpringApplication.run()");
}
}
控制檯列印結果如下。
... start SpringApplication.run()
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.11.RELEASE)
。。。。。。(此處省略一堆列印資訊)
2018-05-02 17:01:19.700 INFO 21236 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
...init resources by implements CommandLineRunner
2018-05-02 17:01:19.708 INFO 21236 --- [ main] cn.mariojd.demo.DemoApplication : Started DemoApplication in 2.282 seconds (JVM running for 3.125)
... end SpringApplication.run()
ApplicationRunner
- 定義初始化類
MyApplicationRunner
- 實現
ApplicationRunner
介面,並實現它的run()
方法,在該方法中編寫初始化邏輯 - 註冊成Bean,新增
@Component
註解即可 - 示例程式碼如下:
@Component
public class MyApplicationRunner implements ApplicationRunner {
@Override
public void run(ApplicationArguments applicationArguments) throws Exception {
System.out.println("...init resources by implements ApplicationRunner");
}
}
可以看到,通過實現 ApplicationRunner 介面,和通過實現 CommandLineRunner 介面都可以完成專案的初始化操作,實現相同的效果。兩者之間唯一的區別是 run()
方法中自帶的形參不相同,在 CommandLineRunner 中只是簡單的String... args
形參,而 ApplicationRunner 則是包含了 ApplicationArguments 物件,可以幫助獲得更豐富的專案資訊。
@Order
如果專案中既有實現了 ApplicationRunner
介面的初始化類,又有實現了 CommandLineRunner
介面的初始化類,那麼會是哪一個先執行呢?測試告訴我們,答案是實現了 ApplicationRunner
介面的初始化類先執行,我想這點倒是不需要大家過分去關注為什麼。但如果需要改變兩個初始化類之間的預設執行順序,那麼使用 @Order
註解就可以幫助我們解決這個問題。
@Component
@Order(1)
public class MyCommandLineRunner implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println("...init resources by implements CommandLineRunner");
}
}
@Component
@Order(2)
public class MyApplicationRunner implements ApplicationRunner {
@Override
public void run(ApplicationArguments applicationArguments) throws Exception {
System.out.println("...init resources by implements ApplicationRunner");
}
}
最終,控制檯中列印如下。通過控制檯輸出我們發現, @Order
註解值越小,該初始化類也就越早執行。
。。。。。。(此處省略一堆列印資訊)
2018-05-02 17:27:31.450 INFO 28304 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
...init resources by implements CommandLineRunner
...init resources by implements ApplicationRunner
2018-05-02 17:27:31.453 INFO 28304 --- [ main] cn.mariojd.demo.DemoApplication : Started DemoApplication in 2.086 seconds (JVM running for 2.977)
@PostConstruct
使用 @PostConstruct
註解同樣可以幫助我們完成資源的初始化操作,前提是這些初始化操作不需要依賴於其它Spring beans的初始化工作。
可以看到 @PostConstruct
註解是用在方法上的,寫一個方法測試一下吧。
@PostConstruct
public void postConstruct() {
System.out.println("... PostConstruct");
}
啟動專案,控制檯中最終列印如下。
... start SpringApplication.run()
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.11.RELEASE)
。。。。。。(此處省略一堆列印資訊)
... PostConstruct
。。。。。。(此處省略一堆列印資訊)
2018-05-02 17:40:22.300 INFO 29796 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
...init resources by implements CommandLineRunner
...init resources by implements ApplicationRunner
2018-05-02 17:40:22.303 INFO 29796 --- [ main] cn.mariojd.demo.DemoApplication : Started DemoApplication in 2.387 seconds (JVM running for 3.267)
... end SpringApplication.run()
文末小結
綜上,使用 @PostConstruct
註解進行初始化操作的順序是最快的,前提是這些操作不能依賴於其它Bean的初始化完成。通過新增 @Order
註解,我們可以改變同層級之間不同Bean的載入順序。
相關文章
- Spring Boot讀取配置檔案的幾種方式Spring Boot
- Spring Boot中@Import三種使用方式!Spring BootImport
- AngularJS中獲取資料來源的幾種方式AngularJS
- Spring Boot的五種部署方式Spring Boot
- spring-boot-route(二)讀取配置檔案的幾種方式Springboot
- Spring Boot開啟的2種方式Spring Boot
- Spring注入Bean的幾種方式SpringBean
- spring-boot-route(一)Controller接收引數的幾種方式SpringbootController
- Spring Boot 中實現定時任務的兩種方式Spring Boot
- Spring在程式碼中獲取bean的幾種方式SpringBean
- Spring連線資料庫的幾種常用的方式Spring資料庫
- spring註冊bean的幾種方式SpringBean
- Spring Boot 2.0(七):Spring Boot 如何解決專案啟動時初始化資源Spring Boot
- 在專案中獲取Spring的Bean的幾種方式SpringBean
- Spring Boot 2.2中的延遲初始化Spring Boot
- Spring Boot中的 6 種API請求引數讀取方式Spring BootAPI
- 加快Spring Boot啟動的幾種方法 | baeldungSpring Boot
- Spring Boot 專案鑑權的 4 種方式Spring Boot
- Spring Boot如何初始化資料Spring Boot
- js中建立物件的幾種方式JS物件
- Spring boot 讀取properties檔案的四種方式Spring Boot
- Spring Boot 讀取配置內容的三種方式Spring Boot
- Spring - 獲取ApplicationContext的幾種方式SpringAPPContext
- Spring Boot中的跨域資源共享(CORS)處理Spring Boot跨域CORS
- Java 中初始化 List 集合的 6 種方式!Java
- Express 提交資料的幾種方式Express
- Spring Boot 入門系列(二十五)讀取配置檔案的幾種方式詳解!Spring Boot
- 如何用Spring Boot解決專案啟動時初始化資源?Spring Boot
- JS中建立函式的幾種方式JS函式
- js中建立物件的幾種常用方式JS物件
- js 中斷迴圈的幾種方式JS
- Spring Boot幾種啟動問題的解決方案Spring Boot
- Spring Boot 實現定時任務的 4 種方式Spring Boot
- Spring Boot 中的靜態資源到底要放在哪裡?Spring Boot
- Spring Boot中的Mongodb多資料來源擴充套件Spring BootMongoDB套件
- SpringBoot中資源初始化載入的幾種方式(看這一片就夠了)Spring Boot
- Spring中bean的四種注入方式SpringBean
- 遍歷資料夾的幾種方式