假設有這麼乙個需求,要求在專案啟動過程中,完成執行緒池的初始化,加密證書載入等功能,你會怎麼做?如果沒想好答案,請接著往下看。今天介紹幾種在spring boot中進行資源初始化的方式,幫助大家解決和回答這個問題。
@component
public class mycommandlinerunner implements commandlinerunner
}
public static void main(string args)
}
控制台列印結果如下。
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
*****====|_|**********====|___/=/_/_/_/
:: spring boot :: (v1.5.11.release)
。。。。。。(此處省略一堆列印資訊)
註冊成bean,新增@component
註解即可
示例**如下:
@order@component
@override
}
}
最終,控制台中列印如下。通過控制台輸出我們發現,@component
@order(1)
public class mycommandlinerunner implements commandlinerunner
}
@component
@order(2)
@override
}
}
@order
註解值越小,該初始化類也就越早執行。
。。。。。。(此處省略一堆列印資訊)
使用@postconstruct
註解同樣可以幫助我們完成資源的初始化操作,前提是這些初始化操作不需要依賴於其它spring beans的初始化工作。
@postconstruct
可以看到@postconstruct
註解是用在方法上的,寫乙個方法測試一下吧。
啟動專案,控制台中最終列印如下。@postconstruct
public void postconstruct()
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
*****====|_|**********====|___/=/_/_/_/
:: spring boot :: (v1.5.11.release)
。。。。。。(此處省略一堆列印資訊)
... postconstruct
。。。。。。(此處省略一堆列印資訊)
綜上,使用@postconstruct
註解進行初始化操作的順序是最快的,前提是這些操作不能依賴於其它bean的初始化完成。通過新增@order
註解,我們可以改變同層級之間不同bean的載入順序。
spring boot初始化報錯
解決方法 將pom檔案中新增如下依賴 org.springframework.boot spring boot starter tomcat 1 234另,如果不行,嘗試再將下面依賴 org.springframework.boot spring boot starter 1 234改為 org.s...
springboot資料初始化
我們常利用springboot資料初始化進行測試資料準備,或者專案啟動的資料準備等,下面來具體了解下配置的含義。springboot2資料初始化配置如下 spring.datasource.initialization mode always spring.datasource.schema cla...
spring boot 初始及快速搭建
spring boot 的核心功能 1.spring boot 可以以jar包的形式獨立執行專案,通過j a jar xx.jar來執行 2.內嵌tomcat,jetty或者undertow 3.簡化m en的配置 使用spring boot starter web,會自動載入所需要的依賴包 4.自...