首页 > 代码库 > 二 IOC之PropertyPlaceholderConfigurer

二 IOC之PropertyPlaceholderConfigurer

    老长一段时间没有看文档了,今天看到这个PropertyPlaceholderConfigurer有点意思,我于百忙之中抽出点时间,将这个点记录在这里,方便日后慢慢完善,慢慢深入。

    因为我目前看的都是based-XML的方式,所以先看下配置是如何的吧!

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="properties">
			<value>custom.user.class=org.tunie.learn.spring.ioc.model.User</value>
		</property>
	</bean>
	<bean id="user" class="${custom.user.class}" scope="prototype">
		<property name="name" value="http://www.mamicode.com/Tunie" />
		<property name="email" value="http://www.mamicode.com/tomailxj@163.com" />
	</bean>

    通过PropertyPlaceholderConfigurer这个类,我们配置了一个常量,这个常量可以应用到bean中的class属性中,其作用还是挺有意思的。


二 IOC之PropertyPlaceholderConfigurer