日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

Spring Boot 5:应用程序启动时初始化资源

發布時間:2023/12/10 javascript 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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:应用程序启动时初始化资源的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。