您好,登錄后才能下訂單哦!
本文實例講述了Spring實戰之Bean銷毀之前的行為操作。分享給大家供大家參考,具體如下:
一 配置
<?xml version="1.0" encoding="GBK"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> <bean id="steelAxe" class="org.crazyit.app.service.impl.SteelAxe"/> <!-- 配置chinese Bean,使用destroy-method="close" 指定該Bean實例被銷毀之前,Spring會自動執行指定該Bean的close方法 --> <bean id="chinese" class="org.crazyit.app.service.impl.Chinese" destroy-method="close"> <property name="axe" ref="steelAxe"/> </bean> </beans>
二 接口
1 Axe
package org.crazyit.app.service; public interface Axe { public String chop(); }
2 Person
package org.crazyit.app.service; public interface Person { public void useAxe(); }
三 Bean
1 Chinese
package org.crazyit.app.service.impl; import org.springframework.beans.factory.DisposableBean; import org.crazyit.app.service.*; public class Chinese implements Person,DisposableBean { private Axe axe; public Chinese() { System.out.println("Spring實例化主調bean:Chinese實例..."); } public void setAxe(Axe axe) { System.out.println("Spring執行依賴關系注入..."); this.axe = axe; } public void useAxe() { System.out.println(axe.chop()); } public void close() { System.out.println("正在執行銷毀之前的方法 close..."); } public void destroy() throws Exception { System.out.println("正在執行銷毀之前的方法 destroy..."); } }
2 SteelAxe
package org.crazyit.app.service.impl; import org.crazyit.app.service.*; public class SteelAxe implements Axe { public SteelAxe() { System.out.println("Spring實例化依賴bean:SteelAxe實例..."); } 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) { // 以CLASSPATH路徑下的配置文件創建ApplicationContext AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); // 獲取容器中的Bean實例 Person p = ctx.getBean("chinese" , Person.class); p.useAxe(); // 為Spring容器注冊關閉鉤子 ctx.registerShutdownHook(); } }
五 測試結果
Spring實例化依賴bean:SteelAxe實例...
Spring實例化主調bean:Chinese實例...
Spring執行依賴關系注入...
鋼斧砍柴真快
九月 21, 2019 9:30:18 下午 org.springframework.context.support.ClassPathXmlApplicationContext doClose
信息: Closing org.springframework.context.support.ClassPathXmlApplicationContext@5a10411: startup date [Sat Sep 21 21:30:18 CST 2019]; root of context hierarchy
正在執行銷毀之前的方法 destroy...
正在執行銷毀之前的方法 close...
更多關于java相關內容感興趣的讀者可查看本站專題:《Spring框架入門與進階教程》、《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》
希望本文所述對大家java程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。