其他分享
首页 > 其他分享> > springBean的创建和销毁

springBean的创建和销毁

作者:互联网

一、实现InitializingBean和DisposableBean接口中的方法可以观察Bean类的创建和销毁

 

 

 

xml中注入Bean:

 

 

 测试方法:

@Test
    public void fun6(){
        System.out.println("begin!");
        Person person = ioc.getBean("person", Person.class);
        System.out.println(person);
        ioc.close();
    }

 

 

 

运行结果:

 

 

 这里有两个初始化Person的原因是:

我创建了两个容器 ^o^

 

 二、基于配置的生命周期回调

初始化方法:init-method=""

销毁方法:destroy-method=""

在Person中创建:

xml配置:

 <!--生命周期回调-->
    <bean class="entity.Person" id="person" init-method="initByMy" destroy-method="destroyByMy"></bean>

 

结果:

 

 先调用接口实现的方法,在调用配置的方法。

 

标签:销毁,Person,创建,System,springBean,person,方法
来源: https://www.cnblogs.com/0099-ymsml/p/16321756.html