本文主要是介绍对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>
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>
三、自动装配
<bean id="foo" class="beanClass" autowire="autowire type"/>
有四种自动装配类型,byName,byType,constructor,autodetect,前两个是针对Set的自动装配,autodetect是由容器选择,在装配不成功(有重复情况)容器会抛异常而不是最先匹配原则。
<beans default-autowire="byName"/>缺省无自动装配,可设置缺省装配属性。
自动装配和非自动装配可混合使用。
四、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>
五、Event
系统事件ContextClosedEvent,ContextRefreshedEvent(初始化或者刷新时),RequestHandlerEvent Web请求被处理后。
接收事件的Bean 需实现ApplicationListener.
继承ApplicationEvent实现自己的Event,后由Bean调用context.publishEvent()发布事件,当然前提是你的Bean 要通过实现ApplicatonContextAware获得ApplicationContext.
这篇关于对Spring的BeanFactory的学习小节 (转)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!