首頁 > 軟體

SpringBoot啟動時自動執行程式碼的幾種實現方式

2022-02-17 13:00:41

前言

目前開發的SpringBoot專案在啟動的時候需要預載入一些資源。而如何實現啟動過程中執行程式碼,或啟動成功後執行,是有很多種方式可以選擇,我們可以在static程式碼塊中實現,也可以在構造方法裡實現,也可以使用@PostConstruct註解實現。

當然也可以去實現Spring的ApplicationRunner與CommandLineRunner介面去實現啟動後執行的功能。在這裡整理一下,在這些位置執行的區別以及載入順序。

java自身的啟動時載入方式

static程式碼塊

static靜態程式碼塊,在類載入的時候即自動執行。

構造方法

在物件初始化時執行。執行順序在static靜態程式碼塊之後。

Spring啟動時載入方式

@PostConstruct註解

PostConstruct註解使用在方法上,這個方法在物件依賴注入初始化之後執行。

ApplicationRunner和CommandLineRunner

SpringBoot提供了兩個介面來實現Spring容器啟動完成後執行的功能,兩個介面分別為CommandLineRunner和ApplicationRunner。

這兩個介面需要實現一個run方法,將程式碼在run中實現即可。這兩個介面功能基本一致,其區別在於run方法的入參。ApplicationRunner的run方法入參為ApplicationArguments,為CommandLineRunner的run方法入參為String陣列。

何為ApplicationArguments

官方檔案解釋為:

”Provides access to the arguments that were used to run a SpringApplication.

在Spring應用執行時使用的存取應用引數。即我們可以獲取到SpringApplication.run(…)的應用引數。

Order註解

當有多個類實現了CommandLineRunner和ApplicationRunner介面時,可以通過在類上新增@Order註解來設定執行順序。

程式碼測試

為了測試啟動時執行的效果和順序,編寫幾個測試程式碼來執行看看。

TestPostConstruct

@Component
public class TestPostConstruct {

    static {
        System.out.println("static");
    }
    public TestPostConstruct() {
        System.out.println("constructer");
    }

    @PostConstruct
    public void init() {
        System.out.println("PostConstruct");
    }
}

TestApplicationRunner

@Component
@Order(1)
public class TestApplicationRunner implements ApplicationRunner{
    @Override
    public void run(ApplicationArguments applicationArguments) throws Exception {
        System.out.println("order1:TestApplicationRunner");
    }
}

TestCommandLineRunner

@Component
@Order(2)
public class TestCommandLineRunner implements CommandLineRunner {
    @Override
    public void run(String... strings) throws Exception {
        System.out.println("order2:TestCommandLineRunner");
    }
}

執行結果

總結

Spring應用啟動過程中,肯定是要自動掃描有@Component註解的類,載入類並初始化物件進行自動注入。載入類時首先要執行static靜態程式碼塊中的程式碼,之後再初始化物件時會執行構造方法。

在物件注入完成後,呼叫帶有@PostConstruct註解的方法。當容器啟動成功後,再根據@Order註解的順序呼叫CommandLineRunner和ApplicationRunner介面類中的run方法。

因此,載入順序為static>constructer>@PostConstruct>CommandLineRunner和ApplicationRunner.

到此這篇關於SpringBoot啟動時自動執行程式碼的幾種實現方式的文章就介紹到這了,更多相關SpringBoot啟動自動執行程式碼內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com