码迷,mamicode.com
首页 > 其他好文 > 详细

apollo 从配置中获取某个配置

时间:2019-11-04 13:14:26      阅读:615      评论:0      收藏:0      [点我收藏+]

标签:context   conf   spring   tst   国际   ali   package   配置文件   auth   

技术图片

 

 

 

 

 

package com.sea.comon.utils;

import java.text.MessageFormat;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.annotation.Configuration;
import org.springframework.util.StringUtils;

import com.ctrip.framework.apollo.Config;
import com.ctrip.framework.apollo.ConfigService;

/**
 * apollo国际化配置文件
 * 
 * @author Merlin
 *
 */
@Configuration
public class ApolloMessageUtil implements InitializingBean {

    private static Config enPublicConfig = ConfigService.getConfig("message"); // apollo 总创建的命名空间名字

    private static ApolloMessageUtil apolloMessage = null;

    public static ApolloMessageUtil getApolloMessage() {
        return apolloMessage;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        apolloMessage = this;
    }

    public static String getString(String key, Object[] params) {
        String msg = null;
        if (!StringUtils.isEmpty(key)) {

            String messageKey = enPublicConfig.getProperty(key, "");
            msg = MessageFormat.format(messageKey, params);
        }
        return msg;
    }
    
    public static String getString(String key) {
        String msg = null;
        if (!StringUtils.isEmpty(key)) {

            msg = enPublicConfig.getProperty(key, "");
        }
        return msg;
    }
    
    public static String getString(Config config ,String key) {
        String msg = null;
        if (!StringUtils.isEmpty(key)) {

            msg = config.getProperty(key, "");
        }
        return msg;
    }
}

 

apollo 从配置中获取某个配置

标签:context   conf   spring   tst   国际   ali   package   配置文件   auth   

原文地址:https://www.cnblogs.com/lshan/p/11791402.html

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