1.
<!-- 引入jdbc配置文件 -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations">
<list>
<value>classpath:db.properties</value>
</list>
</property>
</bean>
<!-- 或者 -->
2.
<!-- 数据库配置文件位置 -->
<context:property-placeholder location="classpath:db.properties" />