Spring框架:第三章:对象的生命周期及单例bean生命周期的11个步骤

IOC之Bean的生命周期
实验22:创建带有生命周期方法的bean

public class Person {
private Integer id;
private String name;

public void init() {
    System.out.println("这是person对象的初始化方法");
}

public void destroy() {
    System.out.println("这是person对象的销毁方法");
}

配置信息:

测试代码:

@Test
public void test13() throws Exception {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext(“applicationContext.xml”);
System.out.println(applicationContext.getBean(“p24”));
applicationContext.close();
}

Bean的后置处理器BeanPostProcessor
bean的后置处理器,可以在bean对象初始化之前或之后做一些工作。
要使用bean的后置处理器,需要实现这个接口并配置。

实验23:测试bean的后置处理器

person对象,一定要有初始化方法

public class Person {
private Integer id;
private String name;
private Car car;

public void init() {
    System.out.println("这是person对象的初始化方法");
}

更多请见:http://www.mark-to-win.com/tutorial/51181.html

上一篇:记录springboot监听redis过期key


下一篇:SpringContextHolder使用报SpringContextHolder使用报错:applicaitonContext属性未注入, 请在applicationContext.xml中定义Sp