91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

屏边| 泰顺县| 江西省| 庄浪县| 高平市| 新闻| 台江县| 德庆县| 顺昌县| 多伦县| 大新县| 蛟河市| 绵阳市| 房产| 集安市| 小金县| 灵丘县| 嵩明县| 鄂伦春自治旗| 凌云县| 阿勒泰市| 呼伦贝尔市| 旺苍县| 普安县| 阆中市| 中江县| 桑植县| 松滋市| 新余市| 建湖县| 大化| 武鸣县| 恩平市| 漾濞| 双江| 舒城县| 固阳县| 平武县| 开化县| 横山县| 金门县|