亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot命令行運行器的實現方法

發布時間:2020-08-21 06:09:48 來源:腳本之家 閱讀:218 作者:banq 欄目:編程語言

CommandLineRunner是一個帶有run方法的簡單spring引導接口。Spring Boot啟動后將自動調用實現CommandLineRunner接口的所有bean的run方法。

Command Line Runner在加載應用程序上下文之后以及Spring Application run方法完成之前執行,相當于你的應用的初始化過程,一般用來實現一些數據預先加載或預先處理。

@SpringBootApplication
<b>public</b> <b>class</b> DemoApplication implements CommandLineRunner {
  <b>private</b> <b>final</b> Logger logger = LoggerFactory.getLogger(DemoApplication.<b>class</b>);
  <b>public</b> <b>static</b> <b>void</b> main(String args) {
    SpringApplication.run(DemoApplication.<b>class</b>, args);
  }
  @Override
  <b>public</b> <b>void</b> run(String... strings) throws Exception {
   ....
  }
}

上面的run方法參數是命令行參數,使用java -jar 啟動這個應用的命令行參數。

如果有多個命令行運行器,可以進行排序:

@Component
@Order(1)
<b>public</b> <b>class</b> AnotherDatabaseLoader implements CommandLineRunner {

@Component
@Order(2)
<b>public</b> <b>class</b> DataLoader implements CommandLineRunner {

另外一種在主應用的寫法:

@SpringBootApplication
<b>public</b> <b>class</b> UnsplashApplication {
  <b>public</b> <b>static</b> <b>void</b> main(String args) {
    SpringApplication.run(UnsplashApplication.<b>class</b>, args);
  }
  @Bean
  CommandLineRunner runner(){
    <b>return</b> args -> {
      System.out.println(<font>"CommandLineRunner running in the UnsplashApplication class..."</font><font>);
    };
  }
}
</font>

總結

以上所述是小編給大家介紹的Spring Boot命令行運行器的實現方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

当涂县| 溆浦县| 洛浦县| 章丘市| 察雅县| 普宁市| 明光市| 苏尼特左旗| 定襄县| 大方县| 三河市| 安塞县| 永州市| 平安县| 长泰县| 清远市| 克拉玛依市| 舞钢市| 吉隆县| 长白| 霍林郭勒市| 隆尧县| 黑龙江省| 平和县| 介休市| 龙泉市| 黑河市| 象山县| 健康| 榆社县| 黄陵县| 溧水县| 全椒县| 禹城市| 深州市| 江油市| 湛江市| 汪清县| 金川县| 威海市| 晋宁县|