Spring在设置完一个bean所有的属性后,会检查bean是否实现了InitializingBean接口,如果实现就调用bean的afterPropertiesSet方法。另外,如果bean是单例的,则afterPropertiesSet方法只会被调用一次;否则每次创建bean时afterPropertiesSet方法都会被重新调用.
Spring虽然可以通过InitializingBean完成一个bean初始化后对这个bean的回调,但是这种方式要求bean实现 InitializingBean接口。一但bean实现了InitializingBean接口,那么这个bean的代码就和Spring耦合到一起了。通常情况下不建议直接实现InitializingBean,而是用Spring提供的init-method的功能来执行一个bean 子定义的初始化方法,这可以在一个bean的配置文件中通过init-method声明:
<bean id="testBean" class="TestClass" init-method="initialize"/>
spring要求这个init-method方法是一个无参数的方法。
Spring要求init-method是一个无参数的方法,如果init-method指定的方法中有参数,那么Spring将会抛出java.lang.NoSuchMethodException
init-method指定的方法可以是public、protected以及private的,并且方法也可以是final的。
init-method指定的方法可以是声明为抛出异常的,就像这样:
final protected void init() throws Exception{
System.out.println("init method...");
if(true) throw new Exception("init exception");
}
如果在init-method方法中抛出了异常,那么Spring将中止这个Bean的后续处理,并且抛出一个org.springframework.beans.factory.BeanCreationException异常。
如果一个bean同时实现了这两种方式的初始化配置,则spring会先调用afterPropertiesSet方法,然后通过反射调用init-method,任何一个方法出错都会导致spring创建bean失败.如果afterPropertiesSet方法调用失败,也不会再继续执行init-mehtod方法。
org.springframework.beans.factory.support. AbstractAutowireCapableBeanFactory完成一个Bean初始化方法的调用工作。 AbstractAutowireCapableBeanFactory是XmlBeanFactory的超类,再 AbstractAutowireCapableBeanFactory的invokeInitMethods方法中实现调用一个Bean初始化方法:
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.java:
view plainprint?
//……
//在一个bean的合作者设备完成后,执行一个bean的初始化方法。
protected void invokeInitMethods(String beanName, Object bean, RootBeanDefinition mergedBeanDefinition)
throws Throwable {
//判断bean是否实现了InitializingBean接口
if (bean instanceof InitializingBean) {
if (logger.isDebugEnabled()) {
logger.debug("Invoking afterPropertiesSet() on bean with name '" + beanName + "'");
}
//调用afterPropertiesSet方法
((InitializingBean) bean).afterPropertiesSet();
}
//判断bean是否定义了init-method
if(mergedBeanDefinition!=null&&mergedBeanDefinition.getInitMethodName() != null) {
//调用invokeCustomInitMethod方法来执行init-method定义的方法
invokeCustomInitMethod(beanName, bean, mergedBeanDefinition.getInitMethodName());
}
}
//执行一个bean定义的init-method方法
protected void invokeCustomInitMethod(String beanName, Object bean, String initMethodName)
throws Throwable {
if (logger.isDebugEnabled()) {
logger.debug("Invoking custom init method '" + initMethodName +
"' on bean with name '" + beanName + "'");
}
//使用方法名,反射Method对象
Method initMethod = BeanUtils.findMethod(bean.getClass(), initMethodName, null);
if (initMethod == null) {
throw new NoSuchMethodException(
"Couldn't find an init method named '" + initMethodName + "' on bean with name '" + beanName + "'");
}
//判断方法是否是public
if (!Modifier.isPublic(initMethod.getModifiers())) {
//设置accessible为true,可以访问private方法。
initMethod.setAccessible(true);
}
try {
//反射执行这个方法
initMethod.invoke(bean, (Object[]) null);
}
catch (InvocationTargetException ex) {
throw ex.getTargetException();
}
}
//………..
通过分析上面的源代码我们可以看到,init-method是通过反射执行的,而afterPropertiesSet是直接执行的。所以 afterPropertiesSet的执行效率比init-method要高,不过init-method消除了bean对Spring依赖。在实际使用时我推荐使用init-method。
第二部分
1.在spring中,先执行属性配置,在执行afterPropertySet()方法,最后init()方法
2.配置文件改为
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="test" class="test.Test" init-method="init">
<property name="name">
<value>chenhaibin</value>
</property>
</bean>
</beans>
3.在Test中增加一个init方法
package test;
import org.springframework.beans.factory.InitializingBean;
public class Test implements InitializingBean
{
private String name;
public String getName()
{
return name;
}
public void setName(String name)
{
System.out.println("-----------setName-------");
this.name = name;
}
public void afterPropertiesSet() throws Exception
{
System.out.println("--------afterPropertyiesSet---------");
}
public void init() throws Exception
{
System.out.println("--------init---------");
}
}
4.测试结果是
2007-08-16 15:39:00,549 DEBUG [org.springframework.beans.CachedIntrospectionResults] - <Found property 'class' of type [java.lang.Class]>
2007-08-16 15:39:00,549 DEBUG [org.springframework.beans.CachedIntrospectionResults] - <Found property 'name' of type [java.lang.String]>
2007-08-16 15:39:00,549 DEBUG [org.springframework.beans.CachedIntrospectionResults] - <Class [test.Test] is cache-safe>
2007-08-16 15:39:00,549 DEBUG [org.springframework.beans.factory.xml.XmlBeanFactory] - <Eagerly caching bean with name 'test' to allow for resolving potential circular references>
2007-08-16 15:39:00,565 DEBUG [org.springframework.beans.BeanWrapperImpl] - <About to invoke write method [public void test.Test.setName(java.lang.String)] on object of class [test.Test]>
-----------setName-------
2007-08-16 15:39:00,565 DEBUG [org.springframework.beans.BeanWrapperImpl] - <Invoked write method [public void test.Test.setName(java.lang.String)] with value of type [java.lang.String]>
2007-08-16 15:39:00,565 DEBUG [org.springframework.beans.factory.xml.XmlBeanFactory] - <Invoking BeanPostProcessors before initialization of bean 'test'>
2007-08-16 15:39:00,565 DEBUG [org.springframework.beans.factory.xml.XmlBeanFactory] - <Invoking afterPropertiesSet() on bean with name 'test'>
--------afterPropertyiesSet---------
2007-08-16 15:39:00,565 DEBUG [org.springframework.beans.factory.xml.XmlBeanFactory] - <Invoking custom init method 'init' on bean with name 'test'>
--------init---------
2007-08-16 15:39:00,565 DEBUG [org.springframework.beans.factory.xml.XmlBeanFactory] - <Invoking BeanPostProcessors after initialization of bean 'test'>
分享到:
相关推荐
本文将深入探讨Spring中的`InitializingBean`接口和`init-method`属性,这两个特性都与bean的初始化过程密切相关。 `InitializingBean`是Spring框架提供的一种回调机制,用于在bean实例化后进行额外的初始化工作。...
因此,在Spring中,InitializingBean接口和init-method可以同时使用,但是在bean的初始化过程中,InitializingBean接口的afterPropertiesSet方法将被先调用,然后再调用init-method中指定的方法。
Spring 框架生命周期和 Bean 实例化过程 Spring 框架是一个非常流行的 Java Web 应用...同时,init-method 和 destroy-method 属性、BeanPostProcessor 接口也是非常重要的概念,它们可以用来动态扩展和修改 Bean。
值得注意的是,Spring 2.5版本后引入了注解的方式,可以使用@PostConstruct和@PreDestroy来代替XML中的init-method和destroy-method,从而更简洁地指定Bean的初始化和销毁方法。 容器本身也具备了极高的扩展性,...
在Spring的XML配置文件中,我们可以使用`init-method`和`destroy-method`属性来指定初始化和销毁的方法。例如: ```xml <bean id="personService" class="com.myapp.core.annotation.init.PersonService" init-...
- 可以通过实现InitializingBean接口、定义init-method属性、使用BeanPostProcessor接口或使用@PostConstruct注解来定义初始化方法。 - 销毁方法可以通过DisposableBean接口、destroy-method属性或@PreDestroy注解...
`initMethod` 和 `destroyMethod` 属性分别指定了bean初始化和销毁时要调用的方法。例如: ```java @Bean(initMethod = "init", destroyMethod = "destroy") Test1 test1() { return new Test1(); } ``` 在...
- 如果不希望实现`InitializingBean`,可以自定义初始化方法,并通过`init-method`指定。 6. **销毁方法(Destroy-Methods)**: - 对于需要在容器关闭时执行清理工作的Bean,可以定义`destroy-method`属性来指定...
此外,Spring 框架还会检查 Bean 对象的生命周期方法,例如 init-method 和 destroy-method。 4. 进行实例化 在准备工作完成后,Spring 框架会进行实例化。在这个阶段,Spring 框架会根据 BeanDefinition 对象的...
在Spring框架中,`org.springframework.beans.factory.InitializingBean`接口是一个非常重要的概念,它用于标记那些需要在初始化完成后执行特定逻辑的bean。这个接口只包含一个方法:`afterPropertiesSet()`,当bean...
若一个bean同时实现了`InitializingBean`接口并配置了`init-method`,Spring会首先调用`afterPropertiesSet()`方法,然后调用`init-method`指定的方法。任何一方出错都将导致bean初始化失败,且如果`...
开发者可以通过实现InitializingBean接口、定义init-method属性、使用@PostConstruct注解来控制初始化,通过 DisposableBean接口、destroy-method属性、@PreDestroy注解来控制销毁。 五、Spring MVC Spring MVC是...
初始化顺序为:首先调用`@PostConstruct`注解的方法,然后是`InitializingBean`的`afterPropertiesSet()`方法,最后是XML配置的`init-method`。 此外,Spring还提供了`BeanPostProcessor`接口,它允许自定义在Bean...
而在使用@Bean注解的Java配置中,可以通过`initMethod`属性来指定。 **销毁回调方法** 1. **@PreDestroy注解** 类似于@PostConstruct,@PreDestroy是Java的JSR-250规范的一部分,用于标记一个方法,在Bean即将被...
- `init-method`和`destroy-method`:在Bean初始化时调用`init-method`指定的方法,在容器关闭时调用`destroy-method`指定的方法。 - Spring容器的生命周期包括对象实例化、属性设置、接口回调(如`BeanNameAware`...
本文将深入探讨如何在Spring容器初始化Bean和销毁Bean前后执行自定义的操作,以便于进行日志记录、资源清理等任务。 首先,我们需要了解Spring中Bean的生命周期。Bean的生命周期大致分为以下阶段: 1. 实例化:...
声明式则是在XML配置文件中使用`init-method`和`destroy-method`属性来指定初始化和销毁方法。 Bean的初始化阶段可以通过以下几种方式: 1. 实现InitializingBean接口,重写afterPropertiesSet()方法。 2. 使用@...
EWA讲义 Hacettepe大学企业Web体系结构讲座的幻灯片和示例应用程序 应用清单: AjaxApp:基于Eclipse的Web项目,使用jQuery演示...spring-bean-lifecycle:使用init-method,destroy-method,InitializingBean,Disp
1. 使用`init-method`属性,指明一个方法在bean所有依赖关系设置完成后自动执行,而无需实现Spring特定接口,降低了代码耦合。 ```xml <bean id="" class="" init-method="init"/> ``` 2. 实现`InitializingBean`...