linux阿波罗配置文件放在哪,Apollo阿波罗配置中心

本文介绍了Apollo配置中心的使用,包括配置文件的位置、Maven依赖、API和Spring整合方式。在Mac/Linux环境下,Environment配置文件位于/opt/settings/server.properties,本地缓存路径为/opt/data/{appId}/config-cache。Apollo提供了ConfigService获取配置并监听变化的方法,同时支持Spring注解简化配置注入和变更监听。
摘要由CSDN通过智能技术生成

一、准备工作

1.2.1 AppId classpath:/META-INF/app.properties  内容app.id=YOUR-APP-ID

1.2.2 Environment 对于Mac/Linux,文件位置为/opt/settings/server.properties 例如env=DEV 详细见文档。

1.2.3 本地缓存路径 /opt/data/{appId}/config-cache (权限)

二、Maven Dependency

com.ctrip.framework.apollo

apollo-client

0.7.0

三、客户端用法

3.1 API使用方式

Config config = ConfigService.getAppConfig(); //config instance is singleton for each namespace and is never null

String someKey = "someKeyFromDefaultNamespace";

String someDefaultValue = "someDefaultValueForTheKey";

String value = config.getProperty(someKey, someDefaultValue);3.1.2 监听配置变化事件

Config config = ConfigService.getAppConfig(); //config instance is singleton for each namespace and is never null

config.addChangeListener(new ConfigChangeListener() {

@O

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值