Spring init-method與destroy-method屬性的用法解析
Spring init-method與destroy-method屬性使用
知識點介紹:
有時候在bean初始化之後要執行的初始化方法,以及在bean銷毀時執行的方法。這時就需要配置init-method和destroy-method屬性,顧名思義,配置初始與銷毀的方法。
操作步驟:
1、創建Speaker對象
public class Speaker { private String name; private String topic; private Speaker(String name,String topic){ this.name = name; this.topic = topic; } /** * Speaker實例化時執行的方法 */ private void init() { System.out.println("執行Speaker 的 初始化方法 init"); } /** * Speaker銷毀時執行的方法 */ private void destroy() { System.out.println("執行Speaker 的銷毀方法 destroy"); } public void teach() { System.out.println(toString()); } @Override public String toString() { return "Speaker [name=" + name + ", topic=" + topic + "]"; } }
2、創建Spring配置文件beanLearn05.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- Learn 05 init-method和destroy-method屬性的使用 --> <bean id="speaker05" class="com.mahaochen.spring.learn05.Speaker" init-method="init" destroy-method="destroy"> <constructor-arg index="0" value="elle" /> <constructor-arg index="1" value="Study Hard!" /> </bean> </beans>
3、將Spring配置文件beanLearn05.xml引入到主配置文件beans.xml中。
<!-- Learn 04 使用實例工廠方式實例化Bean --> <import resource="com/mahaochen/spring/learn05/beanLearn05.xml"/>
4、編寫測試類TestSpring05.java。
public class TestSpring05 { public static void main(String[] args) { ApplicationContext appContext = new ClassPathXmlApplicationContext("beans.xml"); Speaker speaker05 = (Speaker) appContext.getBean("speaker05"); speaker05.teach(); ((ClassPathXmlApplicationContext) appContext).close(); } }
init-method=”init”和 destroy-method=”close” 作用
一般在我們配置數據源的時候,會這樣寫
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
init-method=”init” destroy-method=”close” 作用:
init-method="init"
是指bean被初始化時執行的方法,當bean實例化後,執行init-method用於初始化數據庫連接池。
destroy-method="close"
是指bean被銷毀時執行的方法 Spring容器關閉時調用該方法即調用close()將連接關閉。
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Spring P標簽的使用詳解
- spring bean標簽中的init-method和destroy-method詳解
- Java Spring中Bean的作用域及生命周期
- 使用spring容器在初始化Bean時前和後的操作
- spring容器啟動實現初始化某個方法(init)