Spring中的IOC(四):IOC中其他接口的使用及Spring的事件处理机制(监听机制)

六:IOC中其他接口的使用

1. Beanpostprocessor:(后处理bean)在对象实例化后,进行方法调用前进行特殊处理

2. BeanFactoryPostProcessor在实例化对象前,对配置文件进行特殊处理

3. PropertyeditorSupport属性编辑器类

可以根据定义的规则,将字符串类型自动编辑成一个对象类型来进行属性注入。

4. PropertyPlaceholderConfigurer

方便分散配置的一个类,可以读取配置文件,以${key}获得对应的value

5. CustomEditorConfigurer配置用户自定义的属性编辑器

<bean

class="org.springframework.beans.factory.config

.PropertyPlaceholderConfigurer">

<property name="location">

<value>ioc//info.properties</value>

</property>

</bean>

<bean id="customEditorConfigurer"

class="org.springframework.beans.factory.config

.CustomEditorConfigurer">

<property name="customEditors">

<map>

<entry key="ioc9.Address">

<bean id="myEditor"class="ioc9.AddressEditor">

</bean>

</entry>

</map>

</property>

</bean>

七:Spring的事件处理机制:(监听机制)

1. 自定义一个事件,需要实现接口ApplicationEvent

2. 定义一个监听器,需要实现接口ApplicationListener

3. bean调用容器的方法,发布事件,需要实接口ApplicationContextAware,来获得对容器的引用

你可能感兴趣的:(spring)