zoukankan      html  css  js  c++  java
  • spring 通过编程来获取属性文件

    配置可以读取属性:

    <beans profile="dev">
            <context:property-placeholder ignore-resource-not-found="true"
                                          location="classpath:/META-INF/config/dev/*.properties" />
        </beans>
    
        <beans profile="idc">
            <context:property-placeholder ignore-resource-not-found="true"
                                          location="classpath:/META-INF/config/idc/*.properties" />
        </beans>
    
        <beans profile="production">
            <context:property-placeholder ignore-resource-not-found="true"
                                          location="classpath:/META-INF/config/prod/*.properties" />
        </beans>
    
        <beans profile="test">
            <context:property-placeholder ignore-resource-not-found="true"
                                          location="classpath:/META-INF/config/test/*.properties" />
        </beans>

    也可以通过编程的形式获取文件属性:

    Resource resource = new ClassPathResource("/my.properties");
    Properties props = PropertiesLoaderUtils.loadProperties(resource);

    参考文献:

    【1】http://stackoverflow.com/questions/1771166/access-properties-file-programatically-with-spring

  • 相关阅读:
    6种基本排序(C++实现)
    关于 ^ 异或 及 无中间变量进行交换
    清理C盘旧驱动
    sqlmap基本使用
    http头部注入
    waf绕过注入
    mysql报错注入
    Burp Suite工具使用
    mysql注入
    Linux网络配置
  • 原文地址:https://www.cnblogs.com/davidwang456/p/4861855.html
Copyright © 2011-2022 走看看