Spring Boot 中初始化資源的方式你知道幾種_第1頁(yè)
Spring Boot 中初始化資源的方式你知道幾種_第2頁(yè)
Spring Boot 中初始化資源的方式你知道幾種_第3頁(yè)
Spring Boot 中初始化資源的方式你知道幾種_第4頁(yè)
Spring Boot 中初始化資源的方式你知道幾種_第5頁(yè)
已閱讀5頁(yè),還剩5頁(yè)未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

SpringBoot中初始化資源的方式,你知道幾種?假設(shè)有這么一個(gè)需求,要求在項(xiàng)目啟動(dòng)過(guò)程中,完成線(xiàn)程池的初始化,加密證書(shū)加載等功能,你會(huì)怎么做?如果沒(méi)想好答案,請(qǐng)接著往下看。今天介紹幾種在SpringBoot中進(jìn)行資源初始化的方式,幫助大家解決和回答這個(gè)問(wèn)題。CommandLineRunner定義初始化類(lèi)

MyCommandLineRunner實(shí)現(xiàn)

CommandLineRunner

接口,并實(shí)現(xiàn)它的

run()

方法,在該方法中編寫(xiě)初始化邏輯注冊(cè)成Bean,添加

@Component注解即可示例代碼如下:package

cn.zh.controller;

import

org.springframework.boot.CommandLineRunner;

import

org.springframework.core.annotation.Order;

import

org.springframework.stereotype.Component;

@Componentpublic

class

MyCommandLineRunner

implements

CommandLineRunner

{

@Override

public

void

run(String...

args)

throws

Exception

{

System.out.println("項(xiàng)目初始化---------------11");

}

}實(shí)現(xiàn)了CommandLineRunner接口的Component會(huì)在所有SpringBeans初始化完成之后,在SpringApplication.run()執(zhí)行之前完成。下面通過(guò)加兩行打印來(lái)驗(yàn)證我們的測(cè)試。package

cn.zh;

import

org.springframework.boot.SpringApplication;

import

org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication

public

class

ProcApplication

{

public

static

void

main(String[]

args)

{

System.out.println("...start

SpringApplication.run");

SpringApplication.run(ProcApplication.class,args);

System.out.println("....end

SpringApplication.run");

}

}ApplicationRunner定義初始化類(lèi)

MyApplicationRunner實(shí)現(xiàn)

ApplicationRunner

接口,并實(shí)現(xiàn)它的

run()

方法,在該方法中編寫(xiě)初始化邏輯注冊(cè)成Bean,添加

@Component注解即可示例代碼如下:package

cn.zh.controller;

import

org.springframework.boot.ApplicationArguments;

import

org.springframework.boot.ApplicationRunner;

import

org.springframework.core.annotation.Order;

import

org.springframework.stereotype.Component;

import

javax.annotation.PostConstruct;

@Component

public

class

MyApplicationRunner

implements

ApplicationRunner

{

@Override

public

void

run(ApplicationArguments

args)

throws

Exception

{

System.out.println("項(xiàng)目初始化二---------");

}

}可以看到,通過(guò)實(shí)現(xiàn)ApplicationRunner接口,和通過(guò)實(shí)現(xiàn)CommandLineRunner接口都可以完成項(xiàng)目的初始化操作,實(shí)現(xiàn)相同的效果。兩者之間唯一的區(qū)別是

run()

方法中自帶的形參不相同,在CommandLineRunner中只是簡(jiǎn)單的String...args形參,而ApplicationRunner則是包含了ApplicationArguments對(duì)象,可以幫助獲得更豐富的項(xiàng)目信息。@Order如果項(xiàng)目中既有實(shí)現(xiàn)了

ApplicationRunner

接口的初始化類(lèi),又有實(shí)現(xiàn)了

CommandLineRunner

接口的初始化類(lèi),那么會(huì)是哪一個(gè)先執(zhí)行呢?測(cè)試告訴我們,答案是實(shí)現(xiàn)了

ApplicationRunner

接口的初始化類(lèi)先執(zhí)行,我想這點(diǎn)倒是不需要大家過(guò)分去關(guān)注為什么。但如果需要改變兩個(gè)初始化類(lèi)之間的默認(rèn)執(zhí)行順序,那么使用

@Order

注解就可以幫助我們解決這個(gè)問(wèn)題。搜索公眾號(hào)后端架構(gòu)師后臺(tái)回復(fù)“架構(gòu)整潔”,獲取一份驚喜禮包。@Component

@Order(1)

public

class

MyCommandLineRunner

implements

CommandLineRunner

{

/**

*

Callback

used

to

run

the

bean.

*

*

@param

args

incoming

main

method

arguments

*

@throws

Exception

on

error

*/

@Override

public

void

run(String...

args)

throws

Exception

{

System.out.println("項(xiàng)目初始化---------------11");

}

}

@Component

@Order(2)

public

class

MyApplicationRunner

implements

ApplicationRunner

{

@Override

public

void

run(ApplicationArguments

args)

throws

Exception

{

System.out.println("項(xiàng)目初始化二---------");

}

@PostConstruct

public

void

init(){

System.out.println("@PostConstruct初始化");

}

}@PostConstruct使用

@PostConstruct

注解同樣可以幫助我們完成資源的初始化操作,前提是這些初始化操作不需要依賴(lài)于其它Springbeans的初始化工作。可以看到

@PostConstruct

注解是用在方法上的,寫(xiě)一個(gè)方法測(cè)試一下吧。@PostConstruct

public

void

init(){

System.out.println("@PostConstruct初始化");

}注意:只有一個(gè)非靜態(tài)方法能使用此注解被注解的方法不得有任何參數(shù)被注解的方法返回值必須為void被注解方法不得拋出已檢查異常此方法只會(huì)被執(zhí)行一次綜上,使用

@PostConstruct

注解進(jìn)行初始化操作的順序是最快的,前提是這些操作不能依賴(lài)于其它Bean的初始化完成。通過(guò)添加

@Order

注解,我們可以改變同層級(jí)之間不同Bean的加載順序。InitializingBeanInitializingBean是Spring提供的一個(gè)接口,只包含一個(gè)方法afterPropertiesSet()。凡是實(shí)現(xiàn)了該接口的類(lèi),當(dāng)其對(duì)應(yīng)的Bean交由Spring管理后,當(dāng)其必要的屬性全部設(shè)置完成后,Spring會(huì)調(diào)用該Bean的afterPropertiesSet()。@Component

public

class

MyListener1

implements

InitializingBean

{

@Autowired

private

ShopInfoMapper

shopInfoMapper;

@Override

public

void

afterPropertiesSet()

{

//使用spring容器中的bean

//System.out.println(shopInfoMapper.selectById("1").getShopName());

System.out.println("項(xiàng)目啟動(dòng)OK");

}

}ApplicationListenerApplicationListener就是spring的監(jiān)聽(tīng)器,能夠用來(lái)監(jiān)聽(tīng)事件,典型的觀察者模式。如果容器中有一個(gè)ApplicationListenerBean,每當(dāng)ApplicationContext發(fā)布ApplicationEvent時(shí),ApplicationListenerBean將自動(dòng)被觸發(fā)。這種事件機(jī)制都必須需要程序顯示的觸發(fā)。其中spring有一些內(nèi)置的事件,當(dāng)完成某種操作時(shí)會(huì)發(fā)出某些事件動(dòng)作。比如監(jiān)聽(tīng)ContextRefreshedEvent事件,當(dāng)所有的bean都初始化完成并被成功裝載后會(huì)觸發(fā)該事件,實(shí)現(xiàn)ApplicationListener接口可以收到監(jiān)聽(tīng)動(dòng)作,然后可以寫(xiě)自己的邏輯。同樣事件可以自定義、監(jiān)聽(tīng)也可以自定義,完全根據(jù)自己的業(yè)務(wù)邏輯來(lái)處理。所以也能做到資源的初始化加載。@Component

public

class

MyListener1

implements

ApplicationListener

{

@Override

public

void

onApplicationEvent(ApplicationEvent

applicationE

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論