spring注入Properties

最近项目中向将某个Properties注入到Bean中,经百度知以下代码.

<bean id="settings"   
   class="org.springframework.beans.factory.config.PropertiesFactoryBean">  
   <property name="locations">  
  <list>  
    <value>file:/opt/rms/config/rms-mq.properties</value>  
    <value>file:/opt/rms/config/rms-env.properties</value>  
  </list>  
   </property>  
 </bean>  
</beans> 

===
记录备忘

原文地址:https://www.cnblogs.com/lyq-blogs/p/spring-properties.html