當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring Boot 5:应用程序启动时初始化资源
生活随笔
收集整理的這篇文章主要介紹了
Spring Boot 5:应用程序启动时初始化资源
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
需求:應用程序啟動后,初始化基礎數據、加密證書等操作。
可以使用CommandLineRunner接口來實現,在SpringBoot.run()之后完成資源的初始化工作。
注意:多個Runner需要順序啟動的話,可以使用@Order注解
package sun.flower.diver.modules.system.init;import org.springframework.boot.CommandLineRunner; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component;/*** 應用程序啟動后加載基礎數據 Runner** @Author YangXuyue* @Date 2018/10/28 13:48*/ @Component @Order(1) public class BaseDataRunner implements CommandLineRunner { @Override public void run(String... strings) throws Exception { System.out.println("start init base data"); } } package sun.flower.diver.modules.system.init;import org.springframework.boot.CommandLineRunner; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component;/*** 應用程序啟動后加載證書 Runner** @Author YangXuyue* @Date 2018/10/28 13:50*/ @Component @Order(2) public class CertificateRunner implements CommandLineRunner { @Override public void run(String... strings) throws Exception { System.out.println("start init certificate info"); } } package sun.flower.diver;import org.springframework.boot.Banner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient;@SpringBootApplication // 添加注解 @EnableDiscoveryClient,只有這樣,服務注冊、心跳檢測相關配置信息才能被自動加載 @EnableDiscoveryClient public class DiverApplication { public static void main(String[] args) { System.out.println("application start"); SpringApplication application = new SpringApplication(DiverApplication.class); // 添加監聽器,此時監聽器類不需要標注是一個Bean //application.addListeners(new BaseListener()); application.setBannerMode(Banner.Mode.OFF); application.run(args); System.out.println("application started"); } }?
轉載于:https://www.cnblogs.com/yang21/p/9865399.html
總結
以上是生活随笔為你收集整理的Spring Boot 5:应用程序启动时初始化资源的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: js List 对象封装【原创】
- 下一篇: gradle idea java ssm