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

溫馨提示×

溫馨提示×

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

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

spring?bean標簽中的init-method和destroy-method怎么使用

發布時間:2023-04-15 13:55:41 來源:億速云 閱讀:98 作者:iii 欄目:開發技術

這篇文章主要介紹了spring bean標簽中的init-method和destroy-method怎么使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇spring bean標簽中的init-method和destroy-method怎么使用文章都會有所收獲,下面我們一起來看看吧。

1 背景介紹

在很多項目中,經常在xml配置文件中看到init-method 或者 destroy-method 。因此整理收集下,方便以后參考和學習。可以使用 init-method 和 destroy-method 在bean 配置文件屬性用于在bean初始化和銷毀某些動作時。這是用來替代 InitializingBean和DisposableBean接口。

init-method 用于指定bean的初始化方法。 spring 容器會幫我們實例化對象,實例化對象之后,spring就會查找我們是否配置了init-method。如果在標簽配置了init-method,spring就會調用我們配置的init-method 方法,進行bean的初始化。需要注意的是,構建方法先執行,執行完后就會執行 init-method 。

2 init-method

xml配置

    <bean id="testService" class="com.test.TestService" init-method="myInit" destroy-method="myDestroy">
    </bean>
public class TestService {

    public TestService(){
        System.out.println("實例化:TestService");
    }

    public void myInit(){
        System.out.println("初始化:TestService");
    }

    public void myDestroy(){
        System.out.println("銷毀:TestService");
    }
}

測試

public class App 
{
    public static void main( String[] args )
    {
    	ConfigurableApplicationContext context = 
		new ClassPathXmlApplicationContext(new String[] {"applicationContext.xml"});
	
    	TestService cust = (CustomerService)context.getBean("testService");
    	
    	System.out.println("hhhhh");
    	
    	//context.close();
    }
}

輸出:

實例化:TestService
初始化:TestService
hhhhh

3 destroy-method

public class App 
{
    public static void main( String[] args )
    {
    	ConfigurableApplicationContext context = 
		new ClassPathXmlApplicationContext(new String[] {"applicationContext.xml"});
	
    	TestService cust = (CustomerService)context.getBean("testService");
    	
    	System.out.println("hhhhh");
    	
    	context.close();
    }
}

spring上下文關閉時候,才會進行銷毀。

輸出:

實例化:TestService
初始化:TestService
hhhhh
銷毀:TestService

關于“spring bean標簽中的init-method和destroy-method怎么使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“spring bean標簽中的init-method和destroy-method怎么使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

安达市| 梁河县| 西安市| 堆龙德庆县| 师宗县| 保定市| 乌海市| 西吉县| 札达县| 集贤县| 巴彦淖尔市| 浙江省| 深泽县| 乐都县| 上饶县| 仁怀市| 赣榆县| 商城县| 赤城县| 闽清县| 南漳县| 永德县| 易门县| 开阳县| 公安县| 巴南区| 宁陵县| 韶山市| 土默特左旗| 万山特区| 广汉市| 井冈山市| 荃湾区| 阿坝县| 丰城市| 宝山区| 镇江市| 镇远县| 托克托县| 台东市| 汝阳县|