中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解SpringBoot程序啟動時執行初始化代碼

發布時間:2020-08-30 23:55:52 來源:腳本之家 閱讀:342 作者:stonesingsong 欄目:編程語言

因項目集成了Redis緩存部分數據,需要在程序啟動時將數據加載到Redis中,即初始化數據到Redis。

在SpringBoot項目下,即在容器初始化完畢后執行我們自己的初始化代碼。

第一步:創建實現ApplicationListener接口的類

package com.stone;

import com.stone.service.IPermissionService;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;

/**
 * @author Stone Yuan
 * @create 2017-12-02 21:54
 * @description
 */
public class ApplicationStartup implements ApplicationListener<ContextRefreshedEvent> {

  @Override
  public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
    IPermissionService service = contextRefreshedEvent.getApplicationContext().getBean(IPermissionService.class);
    service.loadUserPermissionIntoRedis();
  }
}

注意:

1、我們自己的初始化代碼寫在onApplicationEvent里;

2、ContextRefreshedEvent是Spring的ApplicationContextEvent一個實現,在容器初始化完成后調用;

3、以注解的方式注入我們需要的bean,會報空指針異常,因此需要以代碼中的方式獲取我們要的bean

第二步:在SpringBootApplication中注冊我們剛創建的類

package com.stone;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class YwythApplication {

  public static void main(String[] args) {
    SpringApplication springApplication = new SpringApplication(YwythApplication.class);
    springApplication.addListeners(new ApplicationStartup());
    springApplication.run(args);
  }
}

利用CommandLineRunner、EnvironmentAware在Spring boot啟動時執行初始化代碼

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.context.EnvironmentAware;
import org.springframework.core.annotation.Order;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;

import java.util.List;

@Component
//如果有多個這樣的類時,可以通過Order指定執行順序,數值越小執行優先級越高
@Order(value = 0)
public class InitSystemConfig implements CommandLineRunner, EnvironmentAware {


  /*
   * 在服務啟動后執行,會在@Bean實例化之后執行,故如果@Bean需要依賴這里的話會出問題
   */
  @Override
  public void run(String... args) {

    //這里可以根據數據庫返回結果創建一些對象、啟動一些線程等
    

  }

  /*
   * 在SystemConfigDao實例化之后、@Bean實例化之前執行
   * 常用于讀取數據庫配置以供其它bean使用
   * environment對象可以獲取配置文件的配置,也可以把配置設置到該對象中
   */
  @Override
  public void setEnvironment(Environment environment) {

  }
}

 以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新河县| 沅陵县| 灌云县| 威远县| 石嘴山市| 佛坪县| 仪陇县| 星子县| 黎城县| 布拖县| 云和县| 得荣县| 右玉县| 屏南县| 中西区| 古交市| 磐安县| 卢氏县| 西昌市| 康保县| 社旗县| 岳阳市| 孝昌县| 博爱县| 武义县| 镶黄旗| 务川| 兴义市| 莒南县| 瑞金市| 南宫市| 游戏| 正蓝旗| 兴仁县| 闵行区| 东乌| 成都市| 克山县| 顺义区| 宜丰县| 定结县|