IOC 容器中 Bean 的生命周期(2)

<bean class="com.linuxidc.spring.processor.MyBeanPostProcessor"/> <bean class="com.linuxidc.spring.bean.Life" id="life" init-method="initMethod" destroy-method="destroyMethod">   <property name="lifeName" value="myLife"/> </bean>

Test

@Test public void test03() {   Life life = ctx.getBean(Life.class);   life.targetMethod(); }

控制台输出:

constructor....
setLifeName....
life's postProcessBeforeInitialization....
initMethod....
life's postProcessAfterInitialization....
targetMethod....

Spring中如何配置Hibernate事务

Struts2整合Spring方法及原理

基于 Spring 设计并实现 RESTful Web Services

Spring-3.2.4 + Quartz-2.2.0集成实例

使用 Spring 进行单元测试

运用Spring注解实现Netty服务器端UDP应用程序

Spring 3.x 企业应用开发实战 PDF完整高清扫描版+源代码

Spring 的详细介绍请点这里
Spring 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/6f70ed78083e555db10809cd8e4167ab.html