• spring读取properties文件


    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_workspaceopcconf

  • 相关阅读:
    Linux文件结构
    磁盘分区
    BASH简介
    磁盘的基本概念
    Linux文件操作
    创建文件系统
    文件系统挂载
    一些常用命令
    asp.net创建PPT
    asp.net创建、删除、移动文件夹 文件
  • 原文地址:https://www.cnblogs.com/liuzy2014/p/5001487.html
Copyright © 2020-2023  润新知