亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

临西县| 宿松县| 通辽市| 小金县| 河池市| 柘荣县| 大城县| 沅江市| 陈巴尔虎旗| 丹棱县| 昆山市| 大姚县| 临汾市| 邵阳县| 白朗县| 蒙城县| 临澧县| 平江县| 商丘市| 霞浦县| 睢宁县| 偏关县| 游戏| 海原县| 新竹县| 温州市| 呼玛县| 绥滨县| 阿瓦提县| 苗栗县| 类乌齐县| 龙南县| 黎平县| 宁都县| 洛扎县| 兰西县| 南阳市| 渝北区| 沈阳市| 含山县| 盐亭县|