Spring的IoC是一个非常强大的东东其功能不仅仅是一个bean的容器本文从介绍Spring的分散配置来说明BeanFactoryPostProcessor接口
有的时候在看Spring的bean描述文件时你也许会遇到类似如下的一些配置
<bean id=message class=distConfigHelloMessage>
<property name=mes>
<value>${ssage}</value>
</property>
</bean>
其中竟然出现了变量引用${ssage}这就是Spring的分散配置可以在另外的配置文件中为ssage指定值
如在beanproperty配置如下定义
ssage=Hican you find me?
当访问名为message的bean时mes属性就会被置为字符串 Hican you find me?但Spring框架是怎么知道存在这样的配置文件呢?这就要靠PropertyPlaceholderConfigurer这个类的bean
<bean id=mesHandler class=orgspringframewonfigPropertyPlaceholderConfigurer>
<property name=locations>
<list>
<value>config/beanproperties</value>
</list>
</property>
</bean>
在这个bean中指定了配置文件为config/beanproperties到这里似乎找到问题的答案了但是其实还有个问题这个mesHandler只不过是spring框架管理的一个bean并没有被别的bean或者对象引用Spring的beanFactory是怎么知道要从这个bean中获取配置信息呢?
我们看看PropertyPlaceholderConfigurer这个类的继承结构
从这个结构图中可以看出PropertyPlaceholderConfigurer这个类间接继承了BeanFactoryPostProcessor接口这是一个很特别的接口当Spring加载任何实现了这个接口的bean的配置时都会在bean工厂载入所有bean的配置之后执行postProcessBeanFactory方法在PropertyResourceConfigurer类中实现了postProcessBeanFactory方法在方法中先后调用了mergePropertiesconvertPropertiesprocessProperties这三个方法分别得到配置将得到的配置转换为合适的类型最后将配置内容告知BeanFactory
正是通过实现BeanFactoryPostProcessor接口BeanFactory会在实例化任何bean之前获得配置信息从而能够正确解析bean描述文件中的变量引用