spring InitializingBean】的更多相关文章

In Spring, InitializingBean and DisposableBean are two marker interfaces, a useful way for Spring to perform certain actions upon bean initialization and destruction. For bean implemented InitializingBean, it will run afterPropertiesSet() after all b…
关于Spring InitializingBean 接口以及Aware接口实现的其实都在 第11步中: finishBeanFactoryInitialization() 方法中完成了3部分的内容: 1.完成对单例的非懒加载的bean 进行初始化 2.对于InitializingBean 接口 spring 会自动调用它的 afterPropertiesSet方法: 3.还进行了对实现了Aware 接口实现的调用 多说无益,我们来看一看,它是怎么完成初始化,以及接口的调用: a:  第一步肯定是…
最近工作需要得到sping中的每个事物需要执行的sql,称机会简单研究了一下spring的事务,项目中管理事务比较简单,用TransactionTemplate,就直接以TransactionTemplate为入口开始学习.TransactionTemplate的源码如下: public class TransactionTemplate extends DefaultTransactionDefinition implements TransactionOperations, Initiali…
原文转自:http://blog.csdn.net/shaozheng1006/article/details/6916940 InitializingBean     Spirng的InitializingBean为bean提供了定义初始化方法的方式.InitializingBean是一个接口,它仅仅包含一个方法:afterPropertiesSet().   在spring 初始化后,执行完所有属性设置方法(即setXxx)将自动调用 afterPropertiesSet(), 在配置文件中…
先说总结:1:spring为bean提供了两种初始化bean的方式,实现InitializingBean接口,实现afterPropertiesSet方法,或者在配置文件中同过init-method指定,两种方式可以同时使用2:实现InitializingBean接口是直接调用afterPropertiesSet方法,比通过反射调用init-method指定的方法效率相对来说要高点.但是init-method方式消除了对spring的依赖3:如果调用afterPropertiesSet方法时出错…
事件机制作为一种编程机制,在许多语言中都提供了支持.JAVA语言也不例外,java中的事件机制的参与者有3种角色: 1.event object 2.event source 3.event listener这三个角色的含义字面上很好解,它们就定义了事件机制的一个基本模型.作为一种常用的编程设计机制,许多开源框架的设计中都使用了事件机制.SpringFramework也不例外,下面着重阐述个人对spring中的事件机制的一些理解.其中一个主要的使用场景是用在IOC的容器的启动过程,当所有的bea…
Spring 容器中的 Bean 是有生命周期的,Spring 允许在 Bean 在初始化完成后以及 Bean 销毁前执行特定的操作,常用的设定方式有以下三种:   通过实现 InitializingBean/DisposableBean 接口来定制初始化之后/销毁之前的操作方法: 通过 元素的 init-method/destroy-method属性指定初始化之后 /销毁之前调用的操作方法: 在指定方法上加上@PostConstruct 或@PreDestroy注解来制定该方法是在初始化之后还…
对于初始化函数: @PostConstruct 注解的方法 InitializingBean接口定义的回调afterPropertiesSet() Bean配置中自定义的初始化函数 对于析构则与上相同: @PreDestroy注解的方法 DisposableBean接口定义的回调destroy() Bean配置中自定义析构函数 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="ht…
Spring framework中的beans 1.概述 bean其实就是各个类实例化后的对象,即objects spring framework的IOC容器所管理的基本单元就是bean spring的IOC容器管理bean的实例化.依赖关系配置过程.bean组装过程(依据依赖关系进行组装) 使用spring的IOC容器管理beans,有三种配置beans之间的依赖关系的方法,分别是XML-based configuration.annotion-based configuration以及Jav…
6. IoC容器 6.1 Spring IoC容器和bean介绍 这一章节介绍了Spring框架的控制反转(IoC)实现的原理.IoC也被称作依赖注入(DI).It is a process whereby objects define their dependencies, that is, the other objects they work with, only through constructor arguments, arguments to a factory method, o…