SpringBoot啟動(dòng)時(shí)讓方法自動(dòng)執(zhí)行的幾種實(shí)現(xiàn)方式
正文
在springBoot中我們有時(shí)候需要讓項(xiàng)目在啟動(dòng)時(shí)提前加載相應(yīng)的數(shù)據(jù)或者執(zhí)行某個(gè)方法,那么實(shí)現(xiàn)提前加載的方式有哪些呢?接下來我?guī)ьI(lǐng)大家逐個(gè)解答
1.實(shí)現(xiàn)ServletContextAware接口并重寫其setServletContext方法
@Component
public class TestStarted implements ServletContextAware {
/**
* 在填充普通bean屬性之后但在初始化之前調(diào)用
* 類似于initializingbean的afterpropertiesset或自定義init方法的回調(diào)
*
*/
@Override
public void setServletContext(ServletContext servletContext) {
System.out.println("setServletContext方法");
}
}
注意:該方法會(huì)在填充完普通Bean的屬性,但是還沒有進(jìn)行Bean的初始化之前執(zhí)行
2.實(shí)現(xiàn)ServletContextListener接口
/**
* 在初始化Web應(yīng)用程序中的任何過濾器或servlet之前,將通知所有servletContextListener上下文初始化。
*/
@Override
public void contextInitialized(ServletContextEvent sce) {
//ServletContext servletContext = sce.getServletContext();
System.out.println("執(zhí)行contextInitialized方法");
}
3.將要執(zhí)行的方法所在的類交個(gè)spring容器掃描(@Component),并且在要執(zhí)行的方法上添加@PostConstruct注解或者靜態(tài)代碼塊執(zhí)行
@Component
public class Test2 {
//靜態(tài)代碼塊會(huì)在依賴注入后自動(dòng)執(zhí)行,并優(yōu)先執(zhí)行
static{
System.out.println("---static--");
}
/**
* @Postcontruct’在依賴注入完成后自動(dòng)調(diào)用
*/
@PostConstruct
public static void haha(){
System.out.println("@Postcontruct’在依賴注入完成后自動(dòng)調(diào)用");
}
}
4.實(shí)現(xiàn)ApplicationRunner接口
/**
* 用于指示bean包含在SpringApplication中時(shí)應(yīng)運(yùn)行的接口。可以定義多個(gè)applicationrunner bean
* 在同一應(yīng)用程序上下文中,可以使用有序接口或@order注釋對(duì)其進(jìn)行排序。
*/
@Override
public void run(ApplicationArguments args) throws Exception {
System.out.println("ApplicationRunner的run方法");
}
5.實(shí)現(xiàn)CommandLineRunner接口
/**
* 用于指示bean包含在SpringApplication中時(shí)應(yīng)運(yùn)行的接口??梢栽谕粦?yīng)用程序上下文中定義多個(gè)commandlinerunner bean,并且可以使用有序接口或@order注釋對(duì)其進(jìn)行排序。
* 如果需要訪問applicationArguments而不是原始字符串?dāng)?shù)組,請(qǐng)考慮使用applicationrunner。
*
*/
@Override
public void run(String... ) throws Exception {
System.out.println("CommandLineRunner的run方法");
}
還有其他方案?
PS:歡迎在留言區(qū)留下你的觀點(diǎn),一起討論提高。如果今天的文章讓你有新的啟發(fā),歡迎轉(zhuǎn)發(fā)分享給更多人。
我已經(jīng)更新了《10萬字Springboot經(jīng)典學(xué)習(xí)筆記》,點(diǎn)擊下面小卡片,進(jìn)【Java開發(fā)寶典】,回復(fù):筆記,即可免費(fèi)獲取。
點(diǎn)贊是最大的支持 
我已經(jīng)更新了《10萬字Springboot經(jīng)典學(xué)習(xí)筆記》,點(diǎn)擊下面小卡片,進(jìn)【Java開發(fā)寶典】,回復(fù):筆記,即可免費(fèi)獲取。
點(diǎn)贊是最大的支持
評(píng)論
圖片
表情
