溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

springBoot啟動(dòng)時(shí)怎么選擇可執(zhí)行的任務(wù)

發(fā)布時(shí)間:2021-06-15 13:40:13 來(lái)源:億速云 閱讀:151 作者:Leah 欄目:大數(shù)據(jù)

本篇文章給大家分享的是有關(guān)springBoot啟動(dòng)時(shí)怎么選擇可執(zhí)行的任務(wù),小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

CommandLineRunner

看源碼說(shuō)明為:

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容器啟動(dòng)的時(shí)候就開(kāi)始批處理一些任務(wù)。是隨spring啟動(dòng)而加載運(yùn)行的。

使用方式:自定義一個(gè)model 實(shí)現(xiàn)該及接口并重寫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(">>>>>>>>>>>>>>>服務(wù)啟動(dòng)執(zhí)行,執(zhí)行加載數(shù)據(jù)等操作<<<<<<<<<<<<<");
}

}

===========如果有多個(gè)類實(shí)現(xiàn)CommandLineRunner接口,如何保證順序??? @Order注解 來(lái)實(shí)現(xiàn)

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(">>>>>>>>>>>>>>>服務(wù)啟動(dòng)執(zhí)行 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(">>>>>>>>>>>>>>>服務(wù)啟動(dòng)執(zhí)行 111111 <<<<<<<<<<<<<");
}

}
```
> 控制臺(tái)顯示
```
>>>>>>>>>>>>>>>服務(wù)啟動(dòng)執(zhí)行 11111111 <<<<<<<<<<<<<
>>>>>>>>>>>>>>>服務(wù)啟動(dòng)執(zhí)行 22222222## 標(biāo)題 ## <<<<<<<<<<<<<
```
> 根據(jù)控制臺(tái)結(jié)果可判斷,@Order 注解的執(zhí)行優(yōu)先級(jí)是按value值從小到大順序。

改接口常用語(yǔ) boot 啟動(dòng)初始化時(shí) 加載一些配置常量。比如一些三方的訪問(wèn)接口配置常量。

例如:

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;
	/**常數(shù)項(xiàng)配置*/
	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啟動(dòng)時(shí)怎么選擇可執(zhí)行的任務(wù),小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI