Spring中配置和读取多个Properties文件

来源:互联网 发布:windows xp桌面壁纸 编辑:程序博客网 时间:2024/04/28 16:03
读取单个
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="ignoreResourceNotFound" value="true" />
        <property name="locations" value="classpath*:/jdbc.properties" />

    </bean>

引用方式注入

  1.  <!-- 声明Properties集合,读取const.properties参数 -->
  2.     <util:properties id="const" location="classpath:const.properties"/>
  3.     <!-- 注入表达式 -->
  4.     <bean id="demo" class="com.tarena.bean.DemoBean">
  5.         <property name="name" value="#{msg.name}"/>
  6.         <property name="lang" value="#{msg.langs[0]}"/>
  7.         <property name="score" value="#{msg.score.JSD1412001}"/>
  8.         <property name="pageSize" value="#{const.PAGE_SIZE}"/>
  9.     </bean>   

 

<!-- 将多个配置文件读取到容器中,交给Spring管理-->  
   <bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
      <property name="locations"> 
        <list> 
           <!-- 这里支持多种寻址方式:classpath和file --> 
           <value>classpath:/opt/demo/config/demo-db.properties</value> 
           <!-- 推荐使用file的方式引入,这样可以将配置和代码分离 --> 
           <value>file:/opt/demo/config/demo-mq.properties</value> 
           <value>file:/opt/demo/config/demo-remote.properties</value> 
         </list>  
      </property>  
   </bean> 

0 0
原创粉丝点击