获取配置文件

实例:获取redis配置文件信息

 

public static final String KEY_PREFIX = Global.getConfig("redis.keyPrefix");

 

    /**
     * 获取配置
     * @see ${fns:getConfig('adminPath')}
     */
    public static String getConfig(String key) {
        String value = map.get(key);
        if (value == null){
            value = loader.getProperty(key);
            map.put(key, value != null ? value : StringUtils.EMPTY);
        }
        return value;
    }

 

    /**
     * 属性文件加载对象(spring)
     */
    private static PropertiesLoader loader = new PropertiesLoader("jeesite.properties");

 

posted on 2019-04-26 08:57  有酒有故事  阅读(244)  评论(0编辑  收藏  举报

导航