1. 程式人生 > >Spring Boot 啟動載入資料 CommandLineRunner

Spring Boot 啟動載入資料 CommandLineRunner

轉載自:https://blog.csdn.net/catoop/article/details/50501710

實際應用中,我們會有在專案服務啟動的時候就去載入一些資料或做一些事情這樣的需求。 
為了解決這樣的問題,Spring Boot 為我們提供了一個方法,通過實現介面 CommandLineRunner 來實現。

很簡單,只需要一個類就可以,無需其他配置。 
建立實現介面 CommandLineRunner 的類

package org.springboot.sample.runner;

import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;

/**
 * 服務啟動執行
 *
 * @author
單紅宇(365384722) * @myblog http://blog.csdn.net/catoop/ * @create 2016年1月9日 */
@Component public class MyStartupRunner1 implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println(">>>>>>>>>>>>>>>服務啟動執行,執行載入資料等操作<<<<<<<<<<<<<"
); } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

Spring Boot應用程式在啟動後,會遍歷CommandLineRunner介面的例項並執行它們的run方法。也可以利用@Order註解(或者實現Order介面)來規定所有CommandLineRunner例項的執行順序。

如下我們使用@Order 註解來定義執行順序。

package org.springboot.sample.runner;

import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import
org.springframework.stereotype.Component; /** * 服務啟動執行 * * @author 單紅宇(365384722) * @myblog http://blog.csdn.net/catoop/ * @create 2016年1月9日 */ @Component @Order(value=2) public class MyStartupRunner1 implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println(">>>>>>>>>>>>>>>服務啟動執行,執行載入資料等操作 11111111 <<<<<<<<<<<<<"); } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
package org.springboot.sample.runner;

import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;

/**
 * 服務啟動執行
 *
 * @author   單紅宇(365384722)
 * @myblog  http://blog.csdn.net/catoop/
 * @create    2016年1月9日
 */
@Component
@Order(value=1)
public class MyStartupRunner2 implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        System.out.println(">>>>>>>>>>>>>>>服務啟動執行,執行載入資料等操作 22222222 <<<<<<<<<<<<<");
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

啟動程式後,控制檯輸出結果為:

>>>>>>>>>>>>>>>服務啟動執行,執行載入資料等操作 22222222 <<<<<<<<<<<<<
>>>>>>>>>>>>>>>服務啟動執行,執行載入資料等操作 11111111 <<<<<<<<<<<<<
  • 1
  • 2

根據控制檯結果可判斷,@Order 註解的執行優先順序是按value值從小到大順序。