05-Spring-IOC之Bean的生命周期

starrylsi
2024-09-11 / 0 评论 / 12 阅读 / 正在检测是否收录...

目标: 创建带有生命周期方法的bean
关键: 给bean标签中 添加属性 init-method="initA" destroy-method="destroyA"

public class A {

    public A() {
        System.out.println("这是A对象被创建了");
    }

    public void initA() {
        System.out.println("这里是初始化A的方法");
    }
    
    public void destroyA() {
        System.out.println("这里是销毁A的方法");
    }
}
 <!-- 
         init-method="initA"         设置初始化方法
         destroy-method="destroyA"    设置销毁的方法
      -->
     <bean id="a" class="com.zhuama.pojo.A" init-method="initA" destroy-method="destroyA"></bean>
@Test
public void test23() {
    ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application2.xml");
    applicationContext.close();
}
0

评论 (0)

取消