内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

SpringBoot2-使用CommandLineRunner與ApplicationRun

本篇文章我們將探討CommandLineRunner和ApplicationRunner的使用。

創(chuàng)新互聯(lián)是一家專注于網(wǎng)站制作、做網(wǎng)站與策劃設(shè)計,蔡甸網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十多年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:蔡甸等地區(qū)。蔡甸做網(wǎng)站價格咨詢:18980820575

在閱讀本篇文章之前,你可以新建一個工程,寫一些關(guān)于本篇內(nèi)容代碼,這樣會加深你對本文內(nèi)容的理解,關(guān)于如何快速創(chuàng)建新工程,可以參考我的這篇博客:

Spring Boot 2 - 創(chuàng)建新工程

概述

CommandLineRunner和ApplicationRunner是Spring Boot所提供的接口,他們都有一個run()方法。所有實現(xiàn)他們的Bean都會在Spring Boot服務(wù)啟動之后自動地被調(diào)用。

由于這個特性,它們是一個理想地方去做一些初始化的工作,或者寫一些測試代碼。

CommandLineRunner

使用Application實現(xiàn)

在我們新建好工程后,為了簡單我們直接使用Application類實現(xiàn)CommandLineRunner接口,這個類的注解@SpringBootApplication會為我們自動配置。

package cn.examplecode.sb2runner;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Sb2runnerApplication implements CommandLineRunner {

    private static Logger logger = LoggerFactory.getLogger(Sb2runnerApplication.class);

    public static void main(String[] args) {
        SpringApplication.run(Sb2runnerApplication.class, args);
    }

    @Override
    public void run(String... args) throws Exception {
        logger.info("服務(wù)已啟動,執(zhí)行command line runner。");

        for (int i = 0; i < args.length; ++i) {
            logger.info("args[{}]: {}", i, args[i]);
        }
    }
}

接下來我們直接啟動服務(wù),查看日志如下,發(fā)現(xiàn)run()方法被正常地執(zhí)行了:

Tomcat started on port(s): 8080 (http) with context path ''
Started Sb2runnerApplication in 2.204 seconds (JVM running for 3.161)
服務(wù)已啟動,執(zhí)行command line runner。

參數(shù)傳遞

run()方法有個可變參數(shù)args,這個參數(shù)是用來接收命令行參數(shù)的,我們下面來加入?yún)?shù)來測試一下:
Spring Boot 2 - 使用CommandLineRunner與ApplicationRun

然后重啟服務(wù),觀察日志,可以看到參數(shù)被正常地接收到了:

Tomcat started on port(s): 8080 (http) with context path ''
Started Sb2runnerApplication in 1.888 seconds (JVM running for 2.41)
服務(wù)已啟動,執(zhí)行command line runner。
args[0]: --param=sth

命令行參數(shù)傳遞

之前我們說過使用Spring Boot的一大優(yōu)勢就是可以將工程直接打包成一個jar包而不需要單獨部署。打包成jar包后可以直接執(zhí)行該jar包進(jìn)行服務(wù)的啟動,這樣在執(zhí)行jar包時我們就可以傳入命令行參數(shù),讓CommandLineRunner接收參數(shù)。

這種場景在服務(wù)器上特別常用。比如我們想執(zhí)行某個操作,又不想對外部暴露,此時可以使用CommandLineRunner作為該操作的入口。

下面我們就打成jar包來演示一下。

  1. 進(jìn)入終端界面,開始打包
    Spring Boot 2 - 使用CommandLineRunner與ApplicationRun

  2. 打包完成后,執(zhí)行該jar包,記得先把IDE的服務(wù)停掉。
    Spring Boot 2 - 使用CommandLineRunner與ApplicationRun

可以從日志中看到我們也正常地獲取到了參數(shù)。通過傳遞參數(shù),在業(yè)務(wù)邏輯上我們可以根據(jù)不同的參數(shù)而執(zhí)行不同的操作。

上面我們提到的只是一個CommandLineRunner,如果我們有多個CommandLineRunner怎么辦呢?怎么控制它們執(zhí)行的順序呢?

下面我們就來介紹如何指定執(zhí)行的順序。

指定執(zhí)行順序

Spring Boot為我們提供了一個注解"@Order",可以用來指定執(zhí)行的順序,比如我們工程里面有三個CommandLineRunner:

@Component
@Order(1)
public class CommandRunner1 implements CommandLineRunner {

    private static Logger logger = LoggerFactory.getLogger(CommandRunner1.class);

    @Override
    public void run(String... args) throws Exception {
        logger.info("執(zhí)行第一個command line runner...");
    }

}

@Component
@Order(2)
public class CommandRunner2 implements CommandLineRunner {

    private static Logger logger = LoggerFactory.getLogger(CommandRunner2.class);

    @Override
    public void run(String... args) throws Exception {
        logger.info("執(zhí)行第二個command line runner...");
    }

}

@Component
@Order(3)
public class CommandRunner3 implements CommandLineRunner {

    private static Logger logger = LoggerFactory.getLogger(CommandRunner3.class);

    @Override
    public void run(String... args) throws Exception {
        logger.info("執(zhí)行第三個command line runner...");
    }

}

我們可以在該類的上面直接加入@Order注解,然后Spring Boot就會按照我們注解指定的順序從小到大的執(zhí)行了。很簡單,是不是?

Tomcat started on port(s): 8080 (http) with context path ''
Started Sb2runnerApplication in 1.764 seconds (JVM running for 2.292)
執(zhí)行第一個command line runner...
執(zhí)行第二個command line runner...
執(zhí)行第三個command line runner...

ApplicationRunner

ApplicationRunner與CommandLineRunner做的事情是一樣的,也是在服務(wù)啟動之后其run()方法會被自動地調(diào)用,唯一不同的是ApplicationRunner會封裝命令行參數(shù),可以很方便地獲取到命令行參數(shù)和參數(shù)值。

@Component
public class ApplicationRunner1 implements ApplicationRunner {

    private static Logger logger = LoggerFactory.getLogger(ApplicationRunner1.class);

    @Override
    public void run(ApplicationArguments args) throws Exception {
        logger.info("執(zhí)行application runner...");
        logger.info("獲取到參數(shù): " + args.getOptionValues("param"));
    }
}

執(zhí)行結(jié)果:
Spring Boot 2 - 使用CommandLineRunner與ApplicationRun

我們可以發(fā)現(xiàn),通過run()方法的參數(shù)ApplicationArguments可以很方便地獲取到命令行參數(shù)的值。

所以如果你的工程需要獲取命令行參數(shù)的話,建議你使用ApplicationRunner。

總結(jié)

無論是CommandLineRunner還是ApplicationRunner,它們的目的都是在服務(wù)啟動之后執(zhí)行一些操作。如果需要獲取命令行參數(shù)時則建議使用ApplicationRunner。

另一種場景是我們在服務(wù)器上需要執(zhí)行某個操作,比如修正數(shù)據(jù)庫用戶的數(shù)據(jù),而又找不到合適的執(zhí)行入口,那么這就是它們理想的使用場景了。

我的博客中其他關(guān)于Spring Boot的所有文章可以點擊這里找到,歡迎關(guān)注!

如果有問題可以留言,或者給我發(fā)郵件lloyd@examplecode.cn,期待我們共同學(xué)習(xí)與成長!

新聞標(biāo)題:SpringBoot2-使用CommandLineRunner與ApplicationRun
URL網(wǎng)址:http://m.rwnh.cn/article18/gdisdp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計公司、商城網(wǎng)站、虛擬主機(jī)定制開發(fā)、建站公司外貿(mào)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司
花垣县| 朝阳市| 哈尔滨市| 华宁县| 孝感市| 仁化县| 交口县| 崇文区| 海伦市| 丰县| 弥勒县| 五莲县| 富蕴县| 喀喇沁旗| 万年县| 佛学| 中西区| 平谷区| 叙永县| 鱼台县| 阜康市| 延川县| 虎林市| 内黄县| 昆山市| 德安县| 虹口区| 老河口市| 宣城市| 沙坪坝区| 苏尼特右旗| 建水县| 宝丰县| 德昌县| 鄱阳县| 宁蒗| 榆林市| 芦溪县| 石景山区| 茶陵县| 中山市|