91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Spring Boot如何初始化運行特定方法

發布時間:2021-08-18 14:00:00 來源:億速云 閱讀:178 作者:小新 欄目:編程語言

這篇文章主要介紹了Spring Boot如何初始化運行特定方法,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

Spring Boot提供了兩種 “開機自啟動” 的方式,ApplicationRunner和CommandLineRunner

這兩種方式的目的是為了滿足,在容器啟動時like執行某些方法。我們可以通過實現ApplicationRunner或者CommandLineRunner來實現,他們都是在SpringAppliaction執行之后開始執行的。這個特性可以讓我們自定義一些在容器啟動時需要初始化的邏輯

ApplicationRunner接口:

官方doc:

Interface used to indicate that a bean should run when it is contained within a SpringApplication. Multiple ApplicationRunner beans can be defined within the same application context and can be ordered using the Ordered

當該接口包含在SpringApplication中時執行。多個ApplicationRunner通過Order直接進行排序:

/**
 * 初始化類
 */
@Order(1) // @Order注解可以改變執行順序,越小越先執行
@Component
public class MyApplicationRunner1 implements ApplicationRunner {
  /**
   * 會在服務啟動完成后立即執行
   */
  @Override
  public void run(ApplicationArguments arg0) throws Exception {
    System.out.println("MyApplicationRunner1----" + arg0);
  }
}
/**
 * 初始化類
 */
@Order(2) 
@Component
public class MyApplicationRunner2 implements ApplicationRunner {
  /**
   * 會在服務啟動完成后立即執行
   */
  @Override
  public void run(ApplicationArguments arg0) throws Exception {
    System.out.println("MyApplicationRunner2----" + arg0);
  }
}

容器啟動后的運行結果:

Spring Boot如何初始化運行特定方法

可以看到多個ApplicationRunner執行順序是按照Order中的值執行的,并且每個的入參都是同一個ApplicationArguments實例(具體原因后面分析)

CommandLineRunner接口:

二者的官方doc基本一樣,區別在于接收的參數不一樣

/**
 * 初始化類
 */
@Order(1) // @Order注解可以改變執行順序,越小越先執行
@Component
public class MyCommandLineRunner1 implements CommandLineRunner {
  /**
   * 會在服務啟動完成后立即執行
   */
  @Override
  public void run(String... args) throws Exception {
    System.out.println("MyCommandLineRunner1----" + args);
  }
}
/**
 * 初始化類
 */
@Order(2)
@Component
public class MyCommandLineRunner2 implements CommandLineRunner {
  /**
   * 會在服務啟動完成后立即執行
   */
  @Override
  public void run(String... args) throws Exception {
    System.out.println("MyCommandLineRunner2----" + args);
  }
}

容器啟動后的運行結果:

Spring Boot如何初始化運行特定方法

可以看到多個CommandLineRunner的執行效果跟ApplicationRunner一模一樣

最后看下源碼:

SpringApplication啟動時,會執行其run方法中的afterRefresh方法:

Spring Boot如何初始化運行特定方法

在afterRefresh中可以看到這兩個接口被執行,并且每個ApplicationRunner或CommandLineRunner實例都是用的同一個入參:

Spring Boot如何初始化運行特定方法

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Spring Boot如何初始化運行特定方法”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

塔城市| 江达县| 巴塘县| 兴和县| 开封县| 澜沧| 凌云县| 武义县| 金平| 高安市| 凤庆县| 双城市| 莲花县| 商南县| 喀什市| 瓦房店市| 鄄城县| 永德县| 峨山| 漾濞| 津南区| 南京市| 周宁县| 湘乡市| 江油市| 德保县| 炉霍县| 青田县| 涿州市| 明星| 湟源县| 仁怀市| 沙坪坝区| 修武县| 青铜峡市| 康马县| 怀远县| 简阳市| 河曲县| 宝兴县| 肃北|