溫馨提示×

溫馨提示×

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

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

如何使用@POSTConstruct和@PreDestroy定制生命周期行為操作示例

發(fā)布時間:2021-10-13 15:02:14 來源:億速云 閱讀:140 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關(guān)如何使用@POSTConstruct和@PreDestroy定制生命周期行為操作示例,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

一 配置

<?xml version="1.0" encoding="GBK"?><beans xmlns="http://www.springframework.org/schema/beans"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xmlns:context="http://www.springframework.org/schema/context"   xsi:schemaLocation="http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd   http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context-4.0.xsd">   <!-- 自動掃描指定包及其子包下的所有Bean類 -->   <context:component-scan      base-package="org.crazyit.app.service"/></beans>

二 接口

Axe

package org.crazyit.app.service;public interface Axe{   public String chop();}Personpackage org.crazyit.app.service;public interface Person{   public void useAxe();}

三 Bean

Chinese

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import javax.annotation.*;import org.crazyit.app.service.*;@Componentpublic class Chinese implements Person{  // 執(zhí)行Field注入  @Resource(name="steelAxe")  private Axe axe;  // 實現(xiàn)Person接口的useAxe()方法  public void useAxe()  {    // 調(diào)用axe的chop()方法,    // 表明Person對象依賴于axe對象    System.out.println(axe.chop());  }  @PostConstruct  public void init()  {    System.out.println("正在執(zhí)行初始化的init方法...");  }  @PreDestroy  public void close()  {    System.out.println("正在執(zhí)行銷毀之前的close方法...");  }}

SteelAxe

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class SteelAxe implements Axe{  public String chop()  {    return "鋼斧砍柴真快";  }}

StoneAxe

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class StoneAxe implements Axe{  public String chop()  {    return "石斧砍柴好慢";  }}

四 測試類

package lee;import org.springframework.context.*;import org.springframework.context.support.*;import org.crazyit.app.service.*;public class BeanTest{  public static void main(String[] args)  {    // 創(chuàng)建Spring容器    AbstractApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");    // 注冊關(guān)閉鉤子    ctx.registerShutdownHook();    Person person = ctx.getBean("chinese" , Person.class);    person.useAxe();  }}

五 測試結(jié)果

正在執(zhí)行初始化的init方法...鋼斧砍柴真快正在執(zhí)行銷毀之前的close方法...

以上就是如何使用@POSTConstruct和@PreDestroy定制生命周期行為操作示例,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

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

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

AI