码迷,mamicode.com
首页 > 编程语言 > 详细

spring读取properties文件

时间:2015-11-27 20:02:46      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

1.方式一

<util:properties id="meta" location="classpath:config/metainfo.properties" />

@Value("#{meta[‘pubVersion‘]}")
    private String pubVersion

 

2方式二:

    <bean id="configPropertiesTest" class="org.springframework.beans.factory.config.PropertiesFactoryBean">  
       <property name="locations">  
           <list>  
               <value>file:${global.config.path}/opc/opc-business/jdbc.write.properties</value>
               <value>file:${global.config.path}/opc/opc-business/jdbc.read.properties</value>
           </list>  
       </property>  
    </bean>

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">  
        <property name="properties" ref="configPropertiesTest" />  
    </bean>

 

  @Value("#{configPropertiesTest[‘jdbc.read.username‘]}")
      private String testKey;

 

启动时加入参数 -Dglobal.config.path=E:\opc_workspace\opc\conf

spring读取properties文件

标签:

原文地址:http://www.cnblogs.com/liuzy2014/p/5001487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!