spring  propertyconfigurer的读取文件 配置成classpath读取是没有问题的,但是配置成绝对路径则不行,请问怎么解决?
比如:
<bean  id="propertyConfigurer"  class="......" >
<property name="locations">
   <list>
      <value>classpath:com/hp/dams/xxx.properties</value>
   </list></property>
</bean>
是可以的,但是<bean  id="propertyConfigurer"  class="......" >
<property name="locations">
   <list>
      <value>file:c:/xxx.properties</value>
   </list></property>
</bean>
绝对路径则不可以,请问怎么解决?Springpropertyconfigurer