ResourceBundle获取项目配置信息

通常,项目的配置信息都是放在.properties的文件中。但是,我们怎么获取此配置文件中的配置。

import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.i18n.LocaleContextHolder;

public class CustFeaturesConfig {
    
    protected final Log log = LogFactory.getLog(CustFeaturesConfig.class);
    private static CustFeaturesConfig config = null;
    private ResourceBundle rb;

    private CustFeaturesConfig() {
        Locale locale = LocaleContextHolder.getLocale();
        this.rb = ResourceBundle.getBundle("custfeatures", locale);
    }

    public static CustFeaturesConfig getInstance() {
        if (config == null) {
            config = new CustFeaturesConfig();
        }
        return config;
    }

    public Integer getIntegerConfig(String key) {
        return Integer.valueOf(getConfig(key));
    }
    
    public Long getLongConfig(String key) {
        return Long.valueOf(getConfig(key));
    }

    public String getConfig(String key) {
        String config;
        try {
            config = this.rb.getString(key);
        } catch (MissingResourceException mse) {
            config = "";
            this.log.info(key + "未找到!");
        }
        return config;
    }

    public void dispose() {
        config = null;
        this.rb = null;
    }
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值