<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<!--classpath是Spring约定的-->
<value>classpath:jdbc.properties</value>
<!--这里可以加入多个属性文件-->
</list>
</property>
</bean>