标签:
当properties文件在src目录下时!!!以下三种路径都是正确的。(经过实验验证都可以读到配置文件),classpath不需要大写字母 <bean id="property" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <value>classpath:jdbc.properties</value> </property> </bean> <bean id="property" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <value>jdbc.properties</value> </property> </bean> <bean id="property" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <value>/jdbc.properties</value> </property> </bean>
标签:
原文地址:http://www.cnblogs.com/2027437606qq/p/5047717.html