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

溫馨提示×

溫馨提示×

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

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

Spring實戰之使用@POSTConstruct和@PreDestroy定制生命周期行為操作示例

發布時間:2020-08-31 20:12:50 來源:腳本之家 閱讀:163 作者:cakincqm 欄目:編程語言

本文實例講述了Spring實戰之使用@POSTConstruct和@PreDestroy定制生命周期行為操作。分享給大家供大家參考,具體如下:

一 配置

<?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();
}
Person
package 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.*;
@Component
public class Chinese implements Person
{
  // 執行Field注入
  @Resource(name="steelAxe")
  private Axe axe;
  // 實現Person接口的useAxe()方法
  public void useAxe()
  {
    // 調用axe的chop()方法,
    // 表明Person對象依賴于axe對象
    System.out.println(axe.chop());
  }
  @PostConstruct
  public void init()
  {
    System.out.println("正在執行初始化的init方法...");
  }
  @PreDestroy
  public void close()
  {
    System.out.println("正在執行銷毀之前的close方法...");
  }
}

SteelAxe

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

StoneAxe

package org.crazyit.app.service.impl;
import org.springframework.stereotype.*;
import org.crazyit.app.service.*;
@Component
public 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)
  {
    // 創建Spring容器
    AbstractApplicationContext ctx = new
      ClassPathXmlApplicationContext("beans.xml");
    // 注冊關閉鉤子
    ctx.registerShutdownHook();
    Person person = ctx.getBean("chinese" , Person.class);
    person.useAxe();
  }
}

五 測試結果

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

更多關于java相關內容感興趣的讀者可查看本站專題:《Spring框架入門與進階教程》、《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

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

AI

玉环县| 图木舒克市| 桐庐县| 黔南| 吉木乃县| 枣强县| 顺平县| 长武县| 广东省| 巩义市| 西昌市| 全椒县| 克什克腾旗| 北京市| 呼和浩特市| 和田市| 吉林省| 高青县| 彭阳县| 西吉县| 榆中县| 东宁县| 阿鲁科尔沁旗| 大荔县| 紫云| 西和县| 资阳市| 平凉市| 镇江市| 安图县| 太仆寺旗| 禄丰县| 龙胜| 星子县| 皮山县| 尚义县| 新田县| 庆云县| 大石桥市| 新营市| 马山县|