相对路径加classpath
绝对路径加file:
<bean id="preferences" class="nebula.system.config.JRelaxPropertyPlaceholderConfigurer" >
<property name="encrypt" value="false"/>
<!-- 指定数据库配置文件路径 -->
<property name="locations">
<list>
<value>file:E:/tempconfig/jdbc_mysql.properties</value>
</list>
</property>
</bean>
<value>classpath:jdbc_mysql.properties</value>