您好,登錄后才能下訂單哦!
使用場景
是一個分布式的配置中心。適用于微服務;
核心功能
開發技術
概念
縮寫 | 全稱 | 說明 |
---|---|---|
FAT | 功能測試環境 | |
UAT | 集成測試環境 | |
PRO | 生產環境 | |
DEV | 開發環境 |
詳細功能
后臺界面操作
客戶端接入文檔
公共組件的操作
公共組件: 提供給應用使用的其它組織的客戶端代碼,比如cat的客戶端;本質上也是應用的一部分;
區別 : 通常情況下,公共組件的使用的配置由原始開發團隊維護,但是實際的應用在運行時,環境不一樣,所以我們也允許應用在實際使用的時候能夠覆蓋公共組件的部分配置;
需要自己創建自己唯一的namespace ;
公共組件的操作
集群獨立配置
灰度發布
操作
要求:jdk1.7+ , guava15.0+
客戶端配置參數
- app.id (systemProperty > System Environment > springboot application.properties > META-INF/app.properties) 對應項目的id
- apollo.meta 訪問地址 (SystemProperty > SpringBoot > SystemEnvironment>/opt/settings/server.properties > app.properties)
- 本地緩存路徑 /opt/data/{appId}/config-cache/ key: apollo.cacheDir
- 環境配置 key : env
- 集群配置 key: apollo.cluster
客戶端依賴
<dependency>
<groupId>com.ctrip.framework.apollo</groupId>
<artifactId>apollo-client</artifactId>
<version>1.1.0</version>
</dependency>
接入方式對比
接入方式 | 特點 |
---|---|
api | 靈活,功能完備 |
spring | placeholder方式 |
springboot | @ConfigurationProperties |
獲取application namespace配置
Config config = ConfigService.getAppConfig();
//config instance is singleton for each namespace and is never null
String value = config.getProperty(someKey, someDefaultValue);
獲取公共namespace
String somePublicNamespace = "CAT";
Config config = ConfigService.getConfig(somePublicNamespace);
//config instance is singleton for each namespace and is never null
String value = config.getProperty(someKey, someDefaultValue);
獲取非properties格式的namespace配置
Config config = ConfigService.getConfig("application.yml");
String value = config.getProperty(someKey, someDefaultValue);
xml格式文件獲取
String someNamespace = "test";
ConfigFile configFile = ConfigService.getConfigFile("test", ConfigFileFormat.XML);
String content = configFile.getContent();
事件監聽
Config config = ConfigService.getAppConfig();
//config instance is singleton for each namespace and is never null
config.addChangeListener(new ConfigChangeListener() {
@Override
public void onChange(ConfigChangeEvent changeEvent) {
System.out.println("Changes for namespace " + changeEvent.getNamespace());
for (String key : changeEvent.changedKeys()) {
ConfigChange change = changeEvent.getChange(key);
System.out.println(String.format("Found change - key: %s, oldValue: %s, newValue: %s, changeType: %s", change.getPropertyName(), change.getOldValue(), change.getNewValue(), change.getChangeType()));
}
}
});
基于xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:apollo="http://www.ctrip.com/schema/apollo"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd">
<apollo:config order="2"/>
<!-- 這個是最復雜的配置形式,指示Apollo注入FX.apollo和application.yml namespace的配置到Spring環境中,并且順序在application前面 -->
<apollo:config namespaces="FX.apollo,application.yml" order="1"/>
<bean class="com.ctrip.framework.apollo.spring.TestXmlBean">
<property name="timeout" value="${timeout:100}"/>
基于javaconfig
//這個是最復雜的配置形式,指示Apollo注入FX.apollo和application.yml namespace的配置到Spring環境中,并且順序在application前面
@Configuration
@EnableApolloConfig(order = 2)
public class SomeAppConfig {
@Bean
public TestJavaConfigBean javaConfigBean() {
return new TestJavaConfigBean();
}
}
@Configuration
@EnableApolloConfig(value = {"FX.apollo", "application.yml"}, order = 1)
public class AnotherAppConfig {}
直接配置屬性
#加載應用對應的application namespace的配置
apollo.bootstrap.enabled = true
#加載其它namespace 的配置
apollo.bootstrap.namespaces = application,FX.apollo,application.yml
#在日志系統啟動之前加載阿波羅
apollo.bootstrap.eagerLoad.enabled=true
一些公共的注解
新增的spring注解
@ApolloJsonValue
用來把配置的json字符串自動注入為對象
配置的遷移
刪除本地的配置;
增加apollo的xml配置;
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
xmlns:apollo="http://www.ctrip.com/schema/apollo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://code.alibabatech.com/schema/dubbo
http://files.sports.lifesense.com/xsd/dubbo.xsd
http://www.ctrip.com/schema/apollo
http://www.ctrip.com/schema/apollo.xsd">
<apollo:config order="1"/>
<apollo:config order="2" namespaces="lx-doctor.redis,lx-doctor.global,lx-doctor.filesystem,lx-doctor.kafka,lx-doctor.dubbo,log4j2.xml"/>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。