溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Spring Bean初始化及銷(xiāo)毀多種實(shí)現(xiàn)方式

發(fā)布時(shí)間:2020-10-13 07:10:21 來(lái)源:腳本之家 閱讀:182 作者:程序通事 欄目:編程語(yǔ)言

這篇文章主要介紹了Spring Bean初始化及銷(xiāo)毀多種實(shí)現(xiàn)方式,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

一、前言

日常開(kāi)發(fā)過(guò)程有時(shí)需要在應(yīng)用啟動(dòng)之后加載某些資源,或者在應(yīng)用關(guān)閉之前釋放資源。Spring 框架提供相關(guān)功能,圍繞 Spring Bean 生命周期,可以在 Bean 創(chuàng)建過(guò)程初始化資源,以及銷(xiāo)毀 Bean 過(guò)程釋放資源。Spring 提供多種不同的方式初始化/銷(xiāo)毀 Bean,如果同時(shí)使用這幾種方式,Spring 如何處理這幾者之間的順序?

二、姿勢(shì)剖析

首先我們先來(lái)回顧一下 Spring 初始化/銷(xiāo)毀 Bean 幾種方式,分別為:

  • init-method/destroy-method
  • InitializingBean/DisposableBean
  • @PostConstruct/@PreDestroy
  • ContextStartedEvent/ContextClosedEvent

PS: 其實(shí)還有一種方式,就是繼承 Spring Lifecycle 接口。不過(guò)這種方式比較繁瑣,這里就不再分析。

2.1、init-method/destroy-method

這種方式在配置文件文件指定初始化/銷(xiāo)毀方法。XML 配置如下

<bean id="demoService" class="com.dubbo.example.provider.DemoServiceImpl" destroy-method="close" init-method="initMethod"/>

或者也可以使用注解方式配置:

@Configurable
public class AppConfig {

  @Bean(initMethod = "init", destroyMethod = "destroy")
  public HelloService hello() {
    return new HelloService();
  }
}

還記得剛開(kāi)始接觸學(xué)習(xí) Spring 框架,使用就是這種方式。

2.2、InitializingBean/DisposableBean

這種方式需要繼承 Spring 接口 InitializingBean/DisposableBean,其中 InitializingBean 用于初始化動(dòng)作,而 DisposableBean 用于銷(xiāo)毀之前清理動(dòng)作。使用方式如下:

@Service
public class HelloService implements InitializingBean, DisposableBean {
  
  @Override
  public void destroy() throws Exception {
    System.out.println("hello destroy...");
  }

  @Override
  public void afterPropertiesSet() throws Exception {
    System.out.println("hello init....");
  }
}

2.3、@PostConstruct/@PreDestroy

這種方式相對(duì)于上面兩種方式來(lái)說(shuō),使用方式最簡(jiǎn)單,只需要在相應(yīng)的方法上使用注解即可。使用方式如下:

@Service
public class HelloService {
  @PostConstruct
  public void init() {
    System.out.println("hello @PostConstruct");
  }

  @PreDestroy
  public void PreDestroy() {
    System.out.println("hello @PreDestroy");
  }
}

這里踩過(guò)一個(gè)坑,如果使用 JDK9 之后版本 ,@PostConstruct/@PreDestroy 需要使用 maven 單獨(dú)引入 javax.annotation-api,否者注解不會(huì)生效。

2.4、ContextStartedEvent/ContextClosedEvent

這種方式使用 Spring 事件機(jī)制,日常業(yè)務(wù)開(kāi)發(fā)比較少見(jiàn),常用與框架集成中。Spring 啟動(dòng)之后將會(huì)發(fā)送 ContextStartedEvent 事件,而關(guān)閉之前將會(huì)發(fā)送 ContextClosedEvent 事件。我們需要繼承 Spring ApplicationListener 才能監(jiān)聽(tīng)以上兩種事件。

@Service
public class HelloListener implements ApplicationListener {

  @Override
  public void onApplicationEvent(ApplicationEvent event) {
    if(event instanceof ContextClosedEvent){
      System.out.println("hello ContextClosedEvent");
    }else if(event instanceof ContextStartedEvent){
      System.out.println("hello ContextStartedEvent");
    }

  }
}

也可以使用 @EventListener注解,使用方式如下:

public class HelloListenerV2 {
  
  @EventListener(value = {ContextClosedEvent.class, ContextStartedEvent.class})
  public void receiveEvents(ApplicationEvent event) {
    if (event instanceof ContextClosedEvent) {
      System.out.println("hello ContextClosedEvent");
    } else if (event instanceof ContextStartedEvent) {
      System.out.println("hello ContextStartedEvent");
    }
  }
}

PS:只有調(diào)用 ApplicationContext#start 才會(huì)發(fā)送 ContextStartedEvent。若不想這么麻煩,可以監(jiān)聽(tīng) ContextRefreshedEvent 事件代替。一旦 Spring 容器初始化完成,就會(huì)發(fā)送 ContextRefreshedEvent。

三、綜合使用

回顧完上面幾種方式,這里我們綜合使用上面的四種方式,來(lái)看下 Spring 內(nèi)部的處理順序。在看結(jié)果之前,各位讀者大人可以猜測(cè)下這幾種方式的執(zhí)行順序。

public class HelloService implements InitializingBean, DisposableBean {


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

  @PreDestroy
  public void PreDestroy() {
    System.out.println("hello @PreDestroy");
  }

  @Override
  public void destroy() throws Exception {
    System.out.println("bye DisposableBean...");
  }

  @Override
  public void afterPropertiesSet() throws Exception {
    System.out.println("hello InitializingBean....");
  }

  public void xmlinit(){
    System.out.println("hello xml-init...");
  }

  public void xmlDestory(){
    System.out.println("bye xmlDestory...");
  }

  @EventListener(value = {ContextClosedEvent.class, ContextStartedEvent.class})
  public void receiveEvents(ApplicationEvent event) {
    if (event instanceof ContextClosedEvent) {
      System.out.println("bye ContextClosedEvent");
    } else if (event instanceof ContextStartedEvent) {
      System.out.println("hello ContextStartedEvent");
    }
  }

}

xml 配置方式如下:

  <context:annotation-config />
  <context:component-scan base-package="com.dubbo.example.demo"/>
  
  <bean class="com.dubbo.example.demo.HelloService" init-method="xmlinit" destroy-method="xmlDestory"/>

應(yīng)用啟動(dòng)方法如下:

ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/dubbo-provider.xml");
context.start();
context.close();

程序輸出結(jié)果如下所示:

Spring Bean初始化及銷(xiāo)毀多種實(shí)現(xiàn)方式

最后采用圖示說(shuō)明總結(jié)以上結(jié)果:

Spring Bean初始化及銷(xiāo)毀多種實(shí)現(xiàn)方式

四、源碼解析

不知道各位讀者有沒(méi)有猜對(duì)這幾種方式的執(zhí)行順序,下面我們就從源碼角度解析 Spring 內(nèi)部處理的順序。

4.1、初始化過(guò)程

使用 ClassPathXmlApplicationContext 啟動(dòng) Spring 容器,將會(huì)調(diào)用 refresh 方法初始化容器。初始化過(guò)程將會(huì)創(chuàng)建 Bean 。最后當(dāng)一切準(zhǔn)備完畢,將會(huì)發(fā)送 ContextRefreshedEvent。當(dāng)容器初始化完畢,調(diào)用 context.start() 就發(fā)送 ContextStartedEvent 事件。

refresh 方法源碼如下:

public void refresh() throws BeansException, IllegalStateException {
  synchronized (this.startupShutdownMonitor) {
      //... 忽略無(wú)關(guān)代碼

      // 初始化所有非延遲初始化的 Bean
      finishBeanFactoryInitialization(beanFactory);

      // 發(fā)送 ContextRefreshedEvent
      finishRefresh();

      //... 忽略無(wú)關(guān)代碼
  }
}

一路跟蹤 finishBeanFactoryInitialization 源碼,直到 AbstractAutowireCapableBeanFactory#initializeBean,源碼如下:

protected Object initializeBean(final String beanName, final Object bean, RootBeanDefinition mbd) {
  Object wrappedBean = bean;
  if (mbd == null || !mbd.isSynthetic()) {
    // 調(diào)用 BeanPostProcessor#postProcessBeforeInitialization 方法
    wrappedBean = applyBeanPostProcessorsBeforeInitialization(wrappedBean, beanName);
  }

  try {
    // 初始化 Bean
    invokeInitMethods(beanName, wrappedBean, mbd);
  }
  catch (Throwable ex) {
    throw new BeanCreationException(
        (mbd != null ? mbd.getResourceDescription() : null),
        beanName, "Invocation of init method failed", ex);
  }
}

BeanPostProcessor 將會(huì)起著攔截器的作用,一旦 Bean 符合條件,將會(huì)執(zhí)行一些處理。這里帶有 @PostConstruct 注解的 Bean 都將會(huì)被 CommonAnnotationBeanPostProcessor 類(lèi)攔截,內(nèi)部將會(huì)觸發(fā) @PostConstruct 標(biāo)注的方法。

接著執(zhí)行 invokeInitMethods ,方法如下:

protected void invokeInitMethods(String beanName, final Object bean, RootBeanDefinition mbd)
    throws Throwable {

  boolean isInitializingBean = (bean instanceof InitializingBean);
  if (isInitializingBean && (mbd == null || !mbd.isExternallyManagedInitMethod("afterPropertiesSet"))) {
    // 省略無(wú)關(guān)代碼
    // 如果是 Bean 繼承 InitializingBean,將會(huì)執(zhí)行 afterPropertiesSet 方法
    ((InitializingBean) bean).afterPropertiesSet();
  }

  if (mbd != null) {
    String initMethodName = mbd.getInitMethodName();
    if (initMethodName != null && !(isInitializingBean && "afterPropertiesSet".equals(initMethodName)) &&
        !mbd.isExternallyManagedInitMethod(initMethodName)) {
      // 執(zhí)行 XML 定義 init-method
      invokeCustomInitMethod(beanName, bean, mbd);
    }
  }
}

如果 Bean 繼承 InitializingBean 接口,將會(huì)執(zhí)行 afterPropertiesSet 方法,另外如果在 XML 中指定了 init-method ,也將會(huì)觸發(fā)。

上面源碼其實(shí)都是圍繞著 Bean 創(chuàng)建的過(guò)程,當(dāng)所有 Bean 創(chuàng)建完成之后,調(diào)用 context#start 將會(huì)發(fā)送 ContextStartedEvent 。這里源碼比較簡(jiǎn)單,如下:

public void start() {
  getLifecycleProcessor().start();
  publishEvent(new ContextStartedEvent(this));
}

4.2、銷(xiāo)毀過(guò)程

調(diào)用 ClassPathXmlApplicationContext#close 方法將會(huì)關(guān)閉容器,具體邏輯將會(huì)在 doClose 方法執(zhí)行。

doClose 這個(gè)方法首先發(fā)送 ContextClosedEvent,然再后開(kāi)始銷(xiāo)毀 Bean。

靈魂拷問(wèn):如果我們顛倒上面兩者順序,結(jié)果會(huì)一樣嗎?

doClose 源碼如下:

protected void doClose() {
  if (this.active.get() && this.closed.compareAndSet(false, true)) {
    // 省略無(wú)關(guān)代碼

    try {
      // Publish shutdown event.
      publishEvent(new ContextClosedEvent(this));
    }
    catch (Throwable ex) {
      logger.warn("Exception thrown from ApplicationListener handling ContextClosedEvent", ex);
    }


    // 銷(xiāo)毀 Bean
    destroyBeans();

    // 省略無(wú)關(guān)代碼
  }
}

destroyBeans 最終將會(huì)執(zhí)行 DisposableBeanAdapter#destroy,@PreDestroy、DisposableBean、destroy-method 三者定義的方法都將會(huì)在內(nèi)部被執(zhí)行。

首先執(zhí)行 DestructionAwareBeanPostProcessor#postProcessBeforeDestruction,這里方法類(lèi)似與上面 BeanPostProcessor。

@PreDestroy 注解將會(huì)被 CommonAnnotationBeanPostProcessor 攔截,這里類(lèi)同時(shí)也繼承了 DestructionAwareBeanPostProcessor。

最后如果 Bean 為 DisposableBean 的子類(lèi),將會(huì)執(zhí)行 destroy 方法,如果在 xml 定義了 destroy-method 方法,該方法也會(huì)被執(zhí)行。

public void destroy() {
  if (!CollectionUtils.isEmpty(this.beanPostProcessors)) {
    for (DestructionAwareBeanPostProcessor processor : this.beanPostProcessors) {
      processor.postProcessBeforeDestruction(this.bean, this.beanName);
    }
  }

  if (this.invokeDisposableBean) {
    // 省略無(wú)關(guān)代碼
    // 如果 Bean 繼承 DisposableBean,執(zhí)行 destroy 方法
    ((DisposableBean) bean).destroy();
    
  }

  if (this.destroyMethod != null) {
    // 執(zhí)行 xml 指定的 destroy-method 方法
    invokeCustomDestroyMethod(this.destroyMethod);
  }
  else if (this.destroyMethodName != null) {
    Method methodToCall = determineDestroyMethod();
    if (methodToCall != null) {
      invokeCustomDestroyMethod(methodToCall);
    }
  }
}

五、總結(jié)

init-method/destroy-method 這種方式需要使用 XML 配置文件或單獨(dú)注解配置類(lèi),相對(duì)來(lái)說(shuō)比較繁瑣。而InitializingBean/DisposableBean 這種方式需要單獨(dú)繼承 Spring 的接口實(shí)現(xiàn)相關(guān)方法。@PostConstruct/@PreDestroy 這種注解方式使用方式簡(jiǎn)單,代碼清晰,比較推薦使用這種方式。

另外 ContextStartedEvent/ContextClosedEvent 這種方式比較適合在一些集成框架使用,比如 Dubbo 2.6.X 優(yōu)雅停機(jī)就是用改機(jī)制。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI