老长一段时间没有看文档了,今天看到这个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="Tunie" /> <property name="email" value="[email protected]" /> </bean>
通过PropertyPlaceholderConfigurer这个类,我们配置了一个常量,这个常量可以应用到bean中的class属性中,其作用还是挺有意思的。
时间: 2025-01-04 15:26:38