Spring《二》 Bean的生命周期
Posted 星剑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring《二》 Bean的生命周期相关的知识,希望对你有一定的参考价值。
Bean初始化
1、bean中实现public void init();方法,config.xml中增加init-method="init" 属性。
2、bean实现接口InitializingBean,实现方法afterPropertiesSet,配置文件无需改动。
Bean的使用
1、
HelloWorld helloWorld=new HelloWorld();
BeanWrapper bw=new BeanWrapperImpl(helloWorld);
bw.setPropertyValue("msg","HelloWorld");
2、
InputStream is=new FileInputStream("config.xml");
XmlBeanFactory factory=new XmlBeanFactory(is);
HelloWorld helloWorld=(HelloWorld)factory.getBean("HelloWorld");
3、
ApplicationContext actx=new FileSystemXmlApplicationContext("config.xml");
HelloWorld hw=(HelloWorld)actx.getBean("HelloWorld");
Bean的销毁
1、bean中实现方法public void cleanup();,bean配置中增加destroy-method="cleanup" 属性
2、bean类实现DisposableBean,并复写public void destroy();配置文档无需变动。
以上是关于Spring《二》 Bean的生命周期的主要内容,如果未能解决你的问题,请参考以下文章