`
esffor
  • 浏览: 1367465 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

对Spring的BeanFactory的学习小节

阅读更多

以下内容是从书中摘录来的,但是我发现即使摘录一遍,对其内容的理解也会更加深入!
一、Spring装配Bean的过程
1. 实例化;
2. 设置属性值;
3. 如果实现了BeanNameAware接口,调用setBeanName设置Bean的ID或者Name;
4. 如果实现BeanFactoryAware接口,调用setBeanFactory 设置BeanFactory;
5. 如果实现ApplicationContextAware,调用setApplicationContext设置ApplicationContext
6. 调用BeanPostProcessor的预先初始化方法;
7. 调用InitializingBean的afterPropertiesSet()方法;
8. 调用定制init-method方法;
9. 调用BeanPostProcessor的后初始化方法;

Spring容器关闭过程
1. 调用DisposableBean的destroy();
2. 调用定制的destroy-method方法;

总结:
在Bean初始化的过程中最多有三次修改Bean的机会,实现InitializingBean或者定制init-method是一次机会,区别是一个与SpringFrameWork紧密偶合;实现BeanPostProcessor为Bean的修改提供了两次机会.
如果需要调用BeanFactor的一些特性,如发布事件等需要对BeanFactor或者ApplicationContext进行引用需实现BeanFactoryAware或者ApplicationContextAware.当然如果想得到自己的ID或者名字则实现BeanNameAware.
ApplicationContextAwareProcessor 是BeanPostProcessor的一个实现,将ApplicationContext传递给所有的实现ApplicationContextAware的Bean.

二、依赖注入
1、set依赖注入

代码
  1.  <property><ref bean="beanName"></property>  
  2. <property><ref local="beanName"></property>  
  3. <property><bean class="beanClass"/></property>  
  4. <property>  
  5.     <list>  
  6.         <value>bar</value>  
  7.         <ref bean="foo"/>  
  8.     </list>  
  9. </property>  
  10. <property>  
  11.     <set>  
  12.         <value>bar</value>  
  13.         <ref bean="foo"/>  
  14.     </set>  
  15. </property>  
  16. <property>  
  17.     <map>  
  18.         <entry key="key1"><!--主键只能是String-->  
  19.             <value>bar</value>  
  20.         </entry>  
  21.         <entry key="key2">  
  22.             <ref bean="foo"/>  
  23.         </entry>  
  24.     </map>  
  25. </property>  
  26. <property>  
  27.     <prop>  
  28.         <prop key="key1">foo</value>  
  29.         <prop key="key2">bar</value>  
  30.     </prop>  
  31. </property>       
  32. <property></null></property>  
<script type="text/javascript">render_code();</script>

 

Global site tag (gtag.js) - Google Analytics