Spring中InitializingBean接口使用理解

InitializingBean接口为bean提供了初始化方法的方式,它只包括afterPropertiesSet方法,凡是继承该接口的类,在初始化bean的时候会执行该方法。

测试程序如下:

1
2
3
4
5
6
7
8
9
10
import  org.springframework.beans.factory.InitializingBean;
public  class  TestInitializingBean  implements  InitializingBean{
     @Override
     public  void  afterPropertiesSet()  throws  Exception {
         System.out.println( "ceshi InitializingBean" );        
     }
     public  void  testInit(){
         System.out.println( "ceshi init-method" );        
     }
}

配置文件如下:

1
< bean  id = "testInitializingBean"  class = "com.TestInitializingBean"  ></ bean >

Main主程序如下:

1
2
3
4
5
public  class  Main {
     public  static  void  main(String[] args){
         ApplicationContext context =  new  FileSystemXmlApplicationContext( "/src/main/java/com/beans.xml" );
     }
}

运行Main程序,打印如下结果:

1
ceshi InitializingBean

这说明在spring初始化bean的时候,如果bean实现了InitializingBean接口,会自动调用afterPropertiesSet方法。

问题

实现InitializingBean接口与在配置文件中指定init-method有什么不同?

修改配置文件,加上init-method配置,修改如下:

1
< bean  id = "testInitializingBean"  class = "com.TestInitializingBean"  init-method = "testInit" ></ bean >

在配置文件中加入init-method="testInit"。

运行Main程序,打印如下结果:

1
2
ceshi InitializingBean
ceshi init-method

由结果可看出,在spring初始化bean的时候,如果该bean是实现了InitializingBean接口,并且同时在配置文件中指定了init-method,系统则是先调用afterPropertiesSet方法,然后在调用init-method中指定的方法。

这方式在spring中是怎么实现的?

通过查看spring的加载bean的源码类(AbstractAutowireCapableBeanFactory)可看出其中奥妙

AbstractAutowireCapableBeanFactory类中的invokeInitMethods讲解的非常清楚,源码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
protected  void  invokeInitMethods(String beanName,  final  Object bean, RootBeanDefinition mbd)  throws  Throwable {
     //判断该bean是否实现了实现了InitializingBean接口,如果实现了InitializingBean接口,则只掉调用bean的afterPropertiesSet方法
     boolean  isInitializingBean = (bean  instanceof  InitializingBean);
     if  (isInitializingBean && (mbd ==  null  || !mbd.isExternallyManagedInitMethod( "afterPropertiesSet" ))) {
         if  (logger.isDebugEnabled()) {
             logger.debug( "Invoking afterPropertiesSet() on bean with name '"  + beanName +  "'" );
         }
         
         if  (System.getSecurityManager() !=  null ) {
             try  {
                 AccessController.doPrivileged( new  PrivilegedExceptionAction<Object>() {
                     public  Object run()  throws  Exception {
                         //直接调用afterPropertiesSet
                         ((InitializingBean) bean).afterPropertiesSet();
                         return  null ;
                     }
                 },getAccessControlContext());
             catch  (PrivilegedActionException pae) {
                 throw  pae.getException();
             }
         }                
         else  {
             //直接调用afterPropertiesSet
             ((InitializingBean) bean).afterPropertiesSet();
         }
     }
     if  (mbd !=  null ) {
         String initMethodName = mbd.getInitMethodName();
         //判断是否指定了init-method方法,如果指定了init-method方法,则再调用制定的init-method
         if  (initMethodName !=  null  && !(isInitializingBean &&  "afterPropertiesSet" .equals(initMethodName)) &&
                 !mbd.isExternallyManagedInitMethod(initMethodName)) {
             //进一步查看该方法的源码,可以发现init-method方法中指定的方法是通过反射实现
             invokeCustomInitMethod(beanName, bean, mbd);
         }
     }
}

总结

1:spring为bean提供了两种初始化bean的方式,实现InitializingBean接口,实现afterPropertiesSet方法,或者在配置文件中同过init-method指定,两种方式可以同时使用

2:实现InitializingBean接口是直接调用afterPropertiesSet方法,比通过反射调用init-method指定的方法效率相对来说要高点。但是init-method方式消除了对spring的依赖

3:如果调用afterPropertiesSet方法时出错,则不调用init-method指定的方法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring的IOC(Inversion of Control,控制反转)是指将对象的创建与依赖注入的控制权交给了容器来管理,而不是由程序员手动管理。通过使用IOC,我们可以将对象之间的关系配置在容器,而不是在代码硬编码。 深入理解Spring的IOC需要理解以下几个关键概念: 1. Bean:在Spring,被容器管理的对象被称为Bean。可以通过配置文件或者注解的方式将一个普通的对象声明为Bean,并由容器负责创建和管理。 2. 容器:Spring的容器负责创建、装配和管理Bean。容器可以是ApplicationContext或者BeanFactory。ApplicationContext是BeanFactory的子接口,提供了更多的功能,如事件发布、国际化处理等。 3. 配置:Spring提供了多种配置方式,包括XML配置、注解配置和Java配置。XML配置是Spring最早支持的方式,通过在XML文件定义Bean的配置信息来实现IOC。注解配置是使用注解来标记Bean和依赖关系的方式。Java配置是使用Java代码来定义Bean和依赖关系。 4. 依赖注入:依赖注入是指容器在创建Bean时,自动将其依赖的对象注入到Bean。依赖注入可以通过构造函数注入、setter方法注入或者字段注入来实现。 5. 生命周期:Spring的容器在管理Bean的生命周期时,提供了一系列的回调方法。可以通过实现InitializingBean接口或者在配置文件指定初始化方法来定义Bean的初始化逻辑,通过实现DisposableBean接口或者在配置文件指定销毁方法来定义Bean的销毁逻辑。 通过深入理解Spring的IOC,我们可以更好地利用Spring框架来管理对象的创建和依赖注入,提高代码的可维护性和可测试性。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值