apollo 从配置中获取某个配置
Posted lshan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apollo 从配置中获取某个配置相关的知识,希望对你有一定的参考价值。
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 从配置中获取某个配置的主要内容,如果未能解决你的问题,请参考以下文章
《果然新鲜》电商项目(20)- 项目配置信息分类(Apollo Namespace命名空间)
linux安装apollo;以及springcloud采用apollo配置时使用本地配置覆盖;springboot从apollo拉取配置