您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關springBoot啟動時怎么選擇可執行的任務,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
看源碼說明為:
Spring Batch jobs. Runs all jobs in the surrounding context by default. Can also be used to launch a specific job
by providing a jobName。
即,在spring容器啟動的時候就開始批處理一些任務。是隨spring啟動而加載運行的。
使用方式:自定義一個model 實現該及接口并重寫run 方法
package org.springboot.sample.runner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
@Component
public class MyStartupRunner implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println(">>>>>>>>>>>>>>>服務啟動執行,執行加載數據等操作<<<<<<<<<<<<<");
}
}
===========如果有多個類實現CommandLineRunner接口,如何保證順序??? @Order注解 來實現
package org.springboot.sample.runner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
@Component
@Order(value=2)
public class MyStartupRunner1 implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println(">>>>>>>>>>>>>>>服務啟動執行 2222 <<<<<<<<<<<<<");
}
}
```
```
package org.springboot.sample.runner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
@Component
@Order(value=1)
public class MyStartupRunner2 implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println(">>>>>>>>>>>>>>>服務啟動執行 111111 <<<<<<<<<<<<<");
}
}
```
> 控制臺顯示
```
>>>>>>>>>>>>>>>服務啟動執行 11111111 <<<<<<<<<<<<<
>>>>>>>>>>>>>>>服務啟動執行 22222222## 標題 ## <<<<<<<<<<<<<
```
> 根據控制臺結果可判斷,@Order 注解的執行優先級是按value值從小到大順序。
改接口常用語 boot 啟動初始化時 加載一些配置常量。比如一些三方的訪問接口配置常量。
例如:
package com.big.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.CommandLineRunner; import org.springframework.core.env.Environment; import org.springframework.stereotype.Component; import lombok.Getter; @Component @Getter public class RiskConstants implements CommandLineRunner{ @Autowired private Environment env; /**常數項配置*/ public static final String TD_URL_DOMAIN = ""; @Override public void run(String... args) throws Exception { RiskConstants.TD_URL_DOMAIN = env.getProperty("t.url.domain"); System.out.println("===============配置文件 config加載完成-------------------------"); } }
以上就是springBoot啟動時怎么選擇可執行的任務,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。