日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring6:bean的生命始末方法

發布時間:2025/6/15 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring6:bean的生命始末方法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

?

package com.atChina2.service;public class SomeServiceImpl implements SomeService {public SomeServiceImpl(){System.out.println("SomeServiceImpl...無參構造函數..");}@Overridepublic void doSome() {System.out.println("doSome業務方法...");}// 定義bean的生命始末方法,自定義方法參與到spring創建和銷毀對象的過程中。// 初始化方法public void startUp(){System.out.println("bean的初始化方法,可以完成構造方法的功能,給屬性賦值,初始化其他對象");}// bean銷毀之前執行的方法public void endDown(){System.out.println("bean對象銷毀之前執行的方法,清楚對象,釋放內存");} }

?

?配置bean的init-method,destroy-method屬性

<?xml version="1.0" encoding="UTF-8"?> <!-- 引用Spring的多個Schema空間的格式定義文件 --> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd "><!-- 定義bean的生命始末方法,自定義方法參與到spring創建和銷毀對象的過程中。1>. 在java類中定義方法,方法的原形: public void 方法名(無參數){...} 2>. 在定義bean的時候,告訴spring兩個方法的存在<bean id="xx" class="yy" init-method="" destroy-method="" />--><bean id="someService" class="com.atChina2.service.SomeServiceImpl" init-method="startUp" destroy-method="endDown" scope="singleton"/></beans>

測試方法:

// 獲取容器中對象信息@Testpublic void test3(){String configLocation = "applicationContext.xml"; // 類路徑的根目錄// 會創建對象ApplicationContext ctx = new ClassPathXmlApplicationContext(configLocation);com.atChina2.service.SomeService ss = (com.atChina2.service.SomeService)ctx.getBean("someService");ss.doSome();/** 銷毀方法的執行* 1. 關閉容器,關閉容器時會通知容器中的單例對象,調用對象自己的銷毀方法* 2. 對象必須是單例的* */((ClassPathXmlApplicationContext)ctx).close();}

測試結果:?

總結

以上是生活随笔為你收集整理的spring6:bean的生命始末方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。