偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

SpringBoot 啟動(dòng)時(shí)實(shí)現(xiàn)自動(dòng)執(zhí)行代碼的幾種方式

開發(fā) 前端
當(dāng)然也可以去實(shí)現(xiàn)Spring的ApplicationRunner與CommandLineRunner接口去實(shí)現(xiàn)啟動(dòng)后運(yùn)行的功能。在這里整理一下,在這些位置執(zhí)行的區(qū)別以及加載順序。

SpringBoot 啟動(dòng)時(shí)實(shí)現(xiàn)自動(dòng)執(zhí)行代碼的幾種方式

  • 前言
  • java自身的啟動(dòng)時(shí)加載方式
  • Spring啟動(dòng)時(shí)加載方式
  • 代碼測(cè)試
  • 總結(jié)

前言

目前開發(fā)的SpringBoot項(xiàng)目在啟動(dòng)的時(shí)候需要預(yù)加載一些資源。而如何實(shí)現(xiàn)啟動(dòng)過程中執(zhí)行代碼,或啟動(dòng)成功后執(zhí)行,是有很多種方式可以選擇,我們可以在static代碼塊中實(shí)現(xiàn),也可以在構(gòu)造方法里實(shí)現(xiàn),也可以使用@PostConstruct注解實(shí)現(xiàn)。

當(dāng)然也可以去實(shí)現(xiàn)Spring的ApplicationRunner與CommandLineRunner接口去實(shí)現(xiàn)啟動(dòng)后運(yùn)行的功能。在這里整理一下,在這些位置執(zhí)行的區(qū)別以及加載順序。

java自身的啟動(dòng)時(shí)加載方式

static代碼塊

static靜態(tài)代碼塊,在類加載的時(shí)候即自動(dòng)執(zhí)行。

構(gòu)造方法

在對(duì)象初始化時(shí)執(zhí)行。執(zhí)行順序在static靜態(tài)代碼塊之后。

Spring啟動(dòng)時(shí)加載方式

@PostConstruct注解

PostConstruct注解使用在方法上,這個(gè)方法在對(duì)象依賴注入初始化之后執(zhí)行。

ApplicationRunner和CommandLineRunner

SpringBoot提供了兩個(gè)接口來實(shí)現(xiàn)Spring容器啟動(dòng)完成后執(zhí)行的功能,兩個(gè)接口分別為CommandLineRunner和ApplicationRunner。

這兩個(gè)接口需要實(shí)現(xiàn)一個(gè)run方法,將代碼在run中實(shí)現(xiàn)即可。這兩個(gè)接口功能基本一致,其區(qū)別在于run方法的入?yún)?。ApplicationRunner的run方法入?yún)锳pplicationArguments,為CommandLineRunner的run方法入?yún)镾tring數(shù)組。

何為ApplicationArguments

官方文檔解釋為:

”Provides access to the arguments that were used to run a SpringApplication.

在Spring應(yīng)用運(yùn)行時(shí)使用的訪問應(yīng)用參數(shù)。即我們可以獲取到SpringApplication.run(…)的應(yīng)用參數(shù)。

Order注解

當(dāng)有多個(gè)類實(shí)現(xiàn)了CommandLineRunner和ApplicationRunner接口時(shí),可以通過在類上添加@Order注解來設(shè)定運(yùn)行順序。

代碼測(cè)試

為了測(cè)試啟動(dòng)時(shí)運(yùn)行的效果和順序,編寫幾個(gè)測(cè)試代碼來運(yùn)行看看。

TestPostConstruct

@Component
public class TestPostConstruct {

static {
System.out.println("static");
}
public TestPostConstruct() {
System.out.println("constructer");
}

@PostConstruct
public void init() {
System.out.println("PostConstruct");
}
}

TestApplicationRunner

@Component
@Order(1)
public class TestApplicationRunner implements ApplicationRunner{
@Override
public void run(ApplicationArguments applicationArguments) throws Exception {
System.out.println("order1:TestApplicationRunner");
}
}

TestCommandLineRunner

@Component
@Order(2)
public class TestCommandLineRunner implements CommandLineRunner {
@Override
public void run(String... strings) throws Exception {
System.out.println("order2:TestCommandLineRunner");
}
}

執(zhí)行結(jié)果

總結(jié)

Spring應(yīng)用啟動(dòng)過程中,肯定是要自動(dòng)掃描有@Component注解的類,加載類并初始化對(duì)象進(jìn)行自動(dòng)注入。加載類時(shí)首先要執(zhí)行static靜態(tài)代碼塊中的代碼,之后再初始化對(duì)象時(shí)會(huì)執(zhí)行構(gòu)造方法。

在對(duì)象注入完成后,調(diào)用帶有@PostConstruct注解的方法。當(dāng)容器啟動(dòng)成功后,再根據(jù)@Order注解的順序調(diào)用CommandLineRunner和ApplicationRunner接口類中的run方法。

因此,加載順序?yàn)閟tatic>constructer>@PostConstruct>CommandLineRunner和ApplicationRunner.

責(zé)任編輯:姜華 來源: 今日頭條
相關(guān)推薦

2025-10-15 02:15:00

SpringBoot項(xiàng)目開發(fā)

2024-04-07 08:06:37

Spring事件應(yīng)用程序

2010-05-25 18:57:42

啟動(dòng)postfix

2017-03-10 10:37:16

Linux命令腳本

2017-12-25 13:51:32

LinuxUbuntu LinuLXD容器

2019-12-30 14:40:15

Spring Boot代碼Java

2020-10-26 10:11:45

Jupyter Not早起Python開發(fā)

2010-11-12 09:58:34

SQL存儲(chǔ)過程

2020-06-04 17:00:37

Linux命令腳本

2019-04-22 12:25:40

UbuntuLinux IP地址

2024-11-06 09:26:48

SpringprofileENV

2023-02-08 08:43:55

前端繼承原型

2021-10-07 20:36:45

Redis集群場(chǎng)景

2021-08-26 13:55:45

systemdLinux目標(biāo)

2021-08-26 11:09:51

systemdLinux

2023-10-25 18:18:10

Python腳本代碼

2021-05-31 06:09:16

微軟Edge瀏覽器

2010-08-05 09:39:17

Flex頁面跳轉(zhuǎn)

2010-05-06 18:42:15

Unix系統(tǒng)

2009-06-17 17:06:20

點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)