对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依赖注入


代码
<property><ref bean="beanName"></property>
<property><ref local="beanName"></property>
<property><bean class="beanClass"/></property>
<property>
<list>
<value>bar</value>
<ref bean="foo"/>
</list>
</property>
<property>
<set>
<value>bar</value>
<ref bean="foo"/>
</set>
</property>
<property>
<map>
<entry key="key1"><!--主键只能是String-->
<value>bar</value>
</entry>
<entry key="key2">
<ref bean="foo"/>
</entry>
</map>
</property>
<property>
<prop>
<prop key="key1">foo</value>
<prop key="key2">bar</value>
</prop>
</property>
<property></null></property>




最后更新:2006-12-16 19:07
10:30 | 永久链接 | 浏览 (874) | 评论 (4) | 收藏 | Spring | 进入论坛 |

永久链接
http://jamesby.iteye.com/blog/39284

评论 共 4 条 发表评论

jamesby 2006-12-16 10:40
2、constructor注入


代码
<constructor-arg>
<value>42</value>
</constructor-arg>
<constructor-arg>
<bean ref="foo"/>
</constructor-arg>
<constructor-arg index="0">
<bean ref="foo"/>
</constructor-arg>
<constructor-arg type="java.net.URL">
<value>http://abc.com</value>
</constructor-arg>




jamesby 2006-12-16 10:40
三、自动装配
<bean id="foo" class="beanClass" autowire="autowire type"/>
有四种自动装配类型,byName,byType,constructor,autodetect,前两个是针对Set的自动装配,autodetect是由容器选择,在装配不成功(有重复情况)容器会抛异常而不是最先匹配原则。
<beans default-autowire="byName"/>缺省无自动装配,可设置缺省装配属性。
自动装配和非自动装配可混合使用。


jamesby 2006-12-16 11:45
四、BeanFactorPostProcessor
在BeanFactory载入所有Bean后,实例化Bean前,对BeanFactor做一些后处理工作,PropertyPlaceholderConfiger和CustomEditorConfigurer是SpringFrameWork自定义的BeanFactoryPostProcessor.

PropertyPlaceholderConfiger


代码
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfiger">
<property name="location">jdbc.properties</property>
</bean>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfiger">
<property name="locations">
<list>
<value>jdbc.properties</value>
<value>security.properties</value>
</list>
</bean>
<bean id="" class="">
<property>
<value>${database.url}</value>
</property>
</bean>


CustomerEditorConfigurer
继承java.beans.PropertyEditorSupport实现自己的TypeEditor,实现其中的setAsText方法,代码事例


代码
public class PhoneEditor extends java.beans.
PropertyEditorSupport{
public void setAsText(String textvalue)
{
......
PhoneNumber phone = new PhoneNumber();
setValue(phone);
}
}


注册到SpringFrameWork


代码
<bean id="customerEditorConfigurer" class="org.springframework.beans.factory.config.CustomerEditorConfiger">
<property name="customEditors">
<map>
<entry key="com.Phone"><!---->
<bean id="phoneEditor" class="PhoneEditor"/>
</entry>
</map>
</property>
</bean>



jamesby 2006-12-16 11:53
五、Event
系统事件ContextClosedEvent,ContextRefreshedEvent(初始化或者刷新时),RequestHandlerEvent Web请求被处理后。

接收事件的Bean 需实现ApplicationListener.

继承ApplicationEvent实现自己的Event,后由Bean调用context.publishEvent()发布事件,当然前提是你的Bean 要通过实现ApplicatonContextAware获得ApplicationContext.

完。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值