14-Dubbo配置加载全解析

14.1 回到启动器的初始化过程

在应用程序启动的时候会调用发布器的启动方法 ,然后调用初始化方法,在发布器DefaultApplicationDeployer中的初始化方法initialize() 如下:

  1. @Override
  2. public void initialize() {
  3. if (initialized) {
  4. return;
  5. }
  6. // Ensure that the initialization is completed when concurrent calls
  7. synchronized (startLock) {
  8. if (initialized) {
  9. return;
  10. }
  11. // register shutdown hook
  12. registerShutdownHook();
  13. startConfigCenter();
  14. loadApplicationConfigs();
  15. initModuleDeployers();
  16. // @since 2.7.8
  17. startMetadataCenter();
  18. initialized = true;
  19. if (logger.isInfoEnabled()) {
  20. logger.info(getIdentifier() + " has been initialized!");
  21. }
  22. }
  23. }

初始化过程中会先启动配置中心配置信息处理,然后 调用加载初始化应用程序配置方法loadApplicationConfigs();进行配置加载
关于配置的官方文档链接为 配置概述

Dubbo框架的配置项比较繁多,为了更好地管理各种配置,将其按照用途划分为不同的组件,最终所有配置项都会汇聚到URL中,传递给后续处理模块。

常用配置组件如下

  • application: Dubbo应用配置
  • registry: 注册中心
  • protocol: 服务提供者RPC协议
  • config-center: 配置中心
  • metadata-report: 元数据中心
  • service: 服务提供者配置
  • reference: 远程服务引用配置
  • provider: service的默认配置或分组配置
  • consumer: reference的默认配置或分组配置
  • module: 模块配置
  • monitor: 监控配置
  • metrics: 指标配置
  • ssl: SSL/TLS配置

配置还有几个比较重要的点:

配置来源
从Dubbo支持的配置来源说起,默认有6种配置来源:

  • JVM System Properties,JVM -D 参数
  • System environment,JVM进程的环境变量
  • Externalized Configuration,外部化配置,从配置中心读取
  • Application Configuration,应用的属性配置,从Spring应用的Environment中提取”dubbo”打头的属性集
  • API / XML /注解等编程接口采集的配置可以被理解成配置来源的一种,是直接面向用户编程的配置采集方式
  • 从classpath读取配置文件 dubbo.properties

覆盖关系
下图展示了配置覆盖关系的优先级,从上到下优先级依次降低: 在这里插入图片描述

配置方式

  • Java API配置
  • XML配置
  • Annotation配置
  • 属性配置

配置虽然非常多,但是我们掌握一下配置加载的原理,再了解下官网的文档说明路径应该基础的配置搞定是没问题的,更深入的配置很多参数还是需要了解下源码的.

14.2 配置信息的初始化回顾

前面我们在讲ModuleModel对象的创建的时候ModuleModel模型中包含了一个成员变量为ModuleEnvironment 代表当前的模块环境和ModuleConfigManager配置管理器
而ModuleModel模型对象的父模型对象ApplicationModel中包含了一个成员变量Environment环境和ConfigManager配置管理器.

在回顾调用过程之前我们先看下模型,配置管理器和环境与配置之间的关系如下图:
在这里插入图片描述

在ModuleConfigManager对象初始化方法initialize()中创建了模块配置管理器:ModuleConfigManager
如下代码所示:

  1. @Override
  2. protected void initialize() {
  3. super.initialize();
  4. this.serviceRepository = new ModuleServiceRepository(this);
  5. this.moduleConfigManager = new ModuleConfigManager(this);
  6. this.moduleConfigManager.initialize();

ModuleEnvironment环境信息对象也会在配置管理器创建的时候被调用到:
如下代码所示:

  1. @Override
  2. public ModuleEnvironment getModelEnvironment() {
  3. if (moduleEnvironment == null) {
  4. moduleEnvironment = (ModuleEnvironment) this.getExtensionLoader(ModuleExt.class)
  5. .getExtension(ModuleEnvironment.NAME);
  6. }
  7. return moduleEnvironment;
  8. }

在扩展对象ExtensionLoader进行对象ModuleEnvironment创建之后会对对象进行初始化调用 initExtension(instance)方法 初始化的时候调用如下代码:
ExtensionLoader中的初始化方法如下:

  1. private void initExtension(T instance) {
  2. if (instance instanceof Lifecycle) {
  3. Lifecycle lifecycle = (Lifecycle) instance;
  4. lifecycle.initialize();
  5. }
  6. }

14.3 属性加载

14.3.1 Environment中属性的初始化方法

这个初始化方法对应ModuleEnvironment的父类型Environment中的初始化方法如下:initialize()

  1. @Override
  2. public void initialize() throws IllegalStateException {
  3. if (initialized.compareAndSet(false, true)) {
  4. //加载在JVM或者环境变量指定的dubbo.properties配置文件 配置的key为dubbo.properties.file ,如果未指定则查找类路径下的dubbo.properties
  5. this.propertiesConfiguration = new PropertiesConfiguration(scopeModel);
  6. //系统JVM参数的配置无需我们来加载到内存,系统已经加载好了放到了System中,我们只需System.getProperty(key)来调用
  7. this.systemConfiguration = new SystemConfiguration();
  8. //系统环境变量的配置,无需我们来加载到内存,系统已经加载好了放到了System中,我们只需System.getenv(key)来获取就可以
  9. this.environmentConfiguration = new EnvironmentConfiguration();
  10. //从远程配置中心的全局配置获取对应配置
  11. this.externalConfiguration = new InmemoryConfiguration("ExternalConfig");
  12. //从远程配置中心的应用配置获取对应配置
  13. this.appExternalConfiguration = new InmemoryConfiguration("AppExternalConfig");
  14. //应用内的配置比如: Spring Environment/PropertySources/application.properties
  15. this.appConfiguration = new InmemoryConfiguration("AppConfig");
  16. //加载迁移配置,用户在JVM参数或者环境变量中指定的dubbo.migration.file,如果用户未指定测尝试加载类路径下的dubbo-migration.yaml
  17. loadMigrationRule();
  18. }
  19. }

14.4.2 属性变量说明

前面我们已经基本上介绍了各个属性的含义下面用一个表格列举一下方便查看:

属性变量名属性类型说明
propertiesConfigurationPropertiesConfigurationdubbo.properties文件中的属性
systemConfigurationSystemConfigurationJVM参数 启动进程时指定的 (-D)配置
environmentConfigurationEnvironmentConfiguration环境变量中的配置
externalConfigurationInmemoryConfiguration外部配置全局配置 例如配置中心中 config-center global/default config
appExternalConfigurationInmemoryConfiguration外部的应用配置 例如配置中心中执行的当前应用的配置 config-center app config
appConfigurationInmemoryConfiguration来自应用中的配置例如:Spring Environment/PropertySources/application.properties
globalConfigurationCompositeConfiguration前面6个配置属性放到一起就是这个
globalConfigurationMapsList<Map<String, String>>最前面的6个属性转换为map放到一起就是这个可以理解为将全局配置globalConfiguration转换成了列表 这个列表顺序在这里是:SystemConfiguration -> EnvironmentConfiguration -> AppExternalConfiguration -> ExternalConfiguration -> AppConfiguration -> AbstractConfig -> PropertiesConfiguration
defaultDynamicGlobalConfigurationCompositeConfiguration这个也是一个组合配置将defaultDynamicConfiguration动态配置(来自配置中心的配置)和全局配置添加到了自己的配置列表中 列表顺序为defaultDynamicConfiguration -> globalConfiguration
localMigrationRuleString,用户在JVM参数或者环境变量中指定的dubbo.migration.file,如果用户未指定测尝试加载类路径下的dubbo-migration.yaml

关于每个配置信息这里还是来了解下细节,方便大家了解原理.

14.3.3 dubbo.properties配置文件加载解析原理

如前面所示:

  1. //加载在JVM或者环境变量指定的dubbo.properties配置文件 配置的key为dubbo.properties.file ,如果未指定则查找类路径下的dubbo.properties
  2. this.propertiesConfiguration = new PropertiesConfiguration(scopeModel);

下面就直接提构造器的PropertiesConfiguration代码了:

  1. public PropertiesConfiguration(ScopeModel scopeModel) {
  2. this.scopeModel = scopeModel;
  3. refresh();
  4. }
  5. public void refresh() {
  6. //配置获取的过程是借助工具类ConfigUtils来获取的
  7. properties = ConfigUtils.getProperties(scopeModel.getClassLoaders());
  8. }

继续看ConfigUtils的getProperties方法:

  1. public static Properties getProperties(Set<ClassLoader> classLoaders) {
  2. //这个配置的KEY是dubbo.properties.file System.getProperty是从JVM参数中获取配置的 一般情况下我们在启动Java进程的时候会指定Dubbo配置文件 如配置:
  3. //-Ddubbo.properties.file=/dubbo.properties
  4. String path = System.getProperty(CommonConstants.DUBBO_PROPERTIES_KEY);
  5. if (StringUtils.isEmpty(path)) {
  6. //优先级最高的JVM参数拿不到数据则从 环境变量中获取,这个配置key也是dubbo.properties.file System.getenv是从环境变量中获取数据
  7. //例如我们在环境变量中配置 dubbo.properties.file=/dubbo.properties
  8. path = System.getenv(CommonConstants.DUBBO_PROPERTIES_KEY);
  9. if (StringUtils.isEmpty(path)) {
  10. //如果在JVM参数和环境变量都拿不到这个配置文件的路径我们就用默认的吧
  11. //默认的路径是类路径下的资源文件 这个路径是: dubbo.properties
  12. path = CommonConstants.DEFAULT_DUBBO_PROPERTIES;
  13. }
  14. }
  15. return ConfigUtils.loadProperties(classLoaders, path, false, true);
  16. }

路径获取之后加载详细的配置内容:

ConfigUtils的loadProperties代码如下:

  1. ConfigUtils.loadProperties(classLoaders, path, false, true);

代码如下:

  1. public static Properties loadProperties(Set<ClassLoader> classLoaders, String fileName, boolean allowMultiFile, boolean optional) {
  2. Properties properties = new Properties();
  3. // add scene judgement in windows environment Fix 2557
  4. //检查文件是否存在 直接加载配置文件如果加载到了配置文件则直接返回
  5. if (checkFileNameExist(fileName)) {
  6. try {
  7. FileInputStream input = new FileInputStream(fileName);
  8. try {
  9. properties.load(input);
  10. } finally {
  11. input.close();
  12. }
  13. } catch (Throwable e) {
  14. logger.warn("Failed to load " + fileName + " file from " + fileName + "(ignore this file): " + e.getMessage(), e);
  15. }
  16. return properties;
  17. }
  18. //为什么会有下面的逻辑呢,如果仅仅使用上面的加载方式只能加载到本系统下的配置文件,无法加载封装在jar中的根路径的配置
  19. Set<java.net.URL> set = null;
  20. try {
  21. List<ClassLoader> classLoadersToLoad = new LinkedList<>();
  22. classLoadersToLoad.add(ClassUtils.getClassLoader());
  23. classLoadersToLoad.addAll(classLoaders);
  24. //这个方法loadResources在扩展加载的时候说过
  25. set = ClassLoaderResourceLoader.loadResources(fileName, classLoadersToLoad).values().stream().reduce(new LinkedHashSet<>(), (a, i) -> {
  26. a.addAll(i);
  27. return a;
  28. });
  29. } catch (Throwable t) {
  30. logger.warn("Fail to load " + fileName + " file: " + t.getMessage(), t);
  31. }
  32. if (CollectionUtils.isEmpty(set)) {
  33. if (!optional) {
  34. logger.warn("No " + fileName + " found on the class path.");
  35. }
  36. return properties;
  37. }
  38. if (!allowMultiFile) {
  39. if (set.size() > 1) {
  40. String errMsg = String.format("only 1 %s file is expected, but %d dubbo.properties files found on class path: %s",
  41. fileName, set.size(), set);
  42. logger.warn(errMsg);
  43. }
  44. // fall back to use method getResourceAsStream
  45. try {
  46. properties.load(ClassUtils.getClassLoader().getResourceAsStream(fileName));
  47. } catch (Throwable e) {
  48. logger.warn("Failed to load " + fileName + " file from " + fileName + "(ignore this file): " + e.getMessage(), e);
  49. }
  50. return properties;
  51. }
  52. logger.info("load " + fileName + " properties file from " + set);
  53. for (java.net.URL url : set) {
  54. try {
  55. Properties p = new Properties();
  56. InputStream input = url.openStream();
  57. if (input != null) {
  58. try {
  59. p.load(input);
  60. properties.putAll(p);
  61. } finally {
  62. try {
  63. input.close();
  64. } catch (Throwable t) {
  65. }
  66. }
  67. }
  68. } catch (Throwable e) {
  69. logger.warn("Fail to load " + fileName + " file from " + url + "(ignore this file): " + e.getMessage(), e);
  70. }
  71. }
  72. return properties;
  73. }

完整的配置加载流程这里用简单的话描述下:

  • 项目内配置查询
    • 路径查询
      • 从JVM参数中获取配置的 dubbo.properties.file配置文件路径
      • 如果前面未获取到路径则从环境变量参数中获取配置的dubbo.properties.file配置文件路径
      • 如果前面未获取到路径则使用默认路径dubbo.propertie
    • 配置加载
      • 将路径转为FileInputStream 然后使用Properties加载
  • 依赖中的配置扫描查询
    • 使用类加载器扫描所有资源URL
    • url转InputStream 如 url.openStream() 然后使用Properties加载

14.3.4 加载JVM参数的配置

这里我们继续看SystemConfiguration配置的加载
这个直接看下代码就可以了:

这个类型仅仅是使用System.getProperty来获取JVM配置即可

  1. public class SystemConfiguration implements Configuration {
  2. @Override
  3. public Object getInternalProperty(String key) {
  4. return System.getProperty(key);
  5. }
  6. public Map<String, String> getProperties() {
  7. return (Map) System.getProperties();
  8. }
  9. }

14.3.5 加载环境变量参数的配置

这里我们来看EnvironmentConfiguration,这里我们直接来看代码:

  1. public class EnvironmentConfiguration implements Configuration {
  2. @Override
  3. public Object getInternalProperty(String key) {
  4. String value = System.getenv(key);
  5. if (StringUtils.isEmpty(value)) {
  6. value = System.getenv(StringUtils.toOSStyleKey(key));
  7. }
  8. return value;
  9. }
  10. public Map<String, String> getProperties() {
  11. return System.getenv();
  12. }
  13. }

14.3.6 内存配置的封装:InmemoryConfiguration

这里我们看下InmemoryConfiguration的设计,这个直接看代码吧内部使用了一个LinkedHashMap来存储配置

  1. public class InmemoryConfiguration implements Configuration {
  2. private String name;
  3. // stores the configuration key-value pairs
  4. private Map<String, String> store = new LinkedHashMap<>();
  5. public InmemoryConfiguration() {
  6. }
  7. public InmemoryConfiguration(String name) {
  8. this.name = name;
  9. }
  10. public InmemoryConfiguration(Map<String, String> properties) {
  11. this.setProperties(properties);
  12. }
  13. @Override
  14. public Object getInternalProperty(String key) {
  15. return store.get(key);
  16. }
  17. /**
  18. * Add one property into the store, the previous value will be replaced if the key exists
  19. */
  20. public void addProperty(String key, String value) {
  21. store.put(key, value);
  22. }
  23. /**
  24. * Add a set of properties into the store
  25. */
  26. public void addProperties(Map<String, String> properties) {
  27. if (properties != null) {
  28. this.store.putAll(properties);
  29. }
  30. }
  31. /**
  32. * set store
  33. */
  34. public void setProperties(Map<String, String> properties) {
  35. if (properties != null) {
  36. this.store = properties;
  37. }
  38. }
  39. public Map<String, String> getProperties() {
  40. return store;
  41. }
  42. }

14.3.7 Dubbo迁移新版本的配置文件加载dubbo-migration.yaml

关于配置迁移文件的用法可以看下这个Dubbo官方的地址迁移规则说明

这个配置文件的文件名字为:dubbo-migration.yaml

这个和14.3.4加载JVM参数配置的过程是相似的细节可以看14.3.4节

  1. private void loadMigrationRule() {
  2. //JVM参数的dubbo.migration.file配置
  3. String path = System.getProperty(CommonConstants.DUBBO_MIGRATION_KEY);
  4. if (StringUtils.isEmpty(path)) {
  5. //环境变量的dubbo.migration.file配置
  6. path = System.getenv(CommonConstants.DUBBO_MIGRATION_KEY);
  7. if (StringUtils.isEmpty(path)) {
  8. //默认的迁移配置文件 dubbo-migration.yaml
  9. path = CommonConstants.DEFAULT_DUBBO_MIGRATION_FILE;
  10. }
  11. }
  12. this.localMigrationRule = ConfigUtils.loadMigrationRule(scopeModel.getClassLoaders(), path);
  13. }

14.4 初始化加载应用配置

加载配置涉及到了配置优先级的处理,

下面来看加载配置代码 loadApplicationConfigs()方法

  1. private void loadApplicationConfigs() {
  2. //发布器还是不处理配置加载的逻辑还是交给配置管理器
  3. configManager.loadConfigs();
  4. }

配置管理器加载配置:

  1. @Override
  2. public void loadConfigs() {
  3. // application config has load before starting config center
  4. // load dubbo.applications.xxx
  5. //加载应用配置
  6. loadConfigsOfTypeFromProps(ApplicationConfig.class);
  7. // load dubbo.monitors.xxx
  8. //加载监控配置
  9. loadConfigsOfTypeFromProps(MonitorConfig.class);
  10. // load dubbo.metrics.xxx
  11. //加载指标监控配置
  12. loadConfigsOfTypeFromProps(MetricsConfig.class);
  13. // load multiple config types:
  14. // load dubbo.protocols.xxx
  15. //加载协议配置
  16. loadConfigsOfTypeFromProps(ProtocolConfig.class);
  17. // load dubbo.registries.xxx
  18. loadConfigsOfTypeFromProps(RegistryConfig.class);
  19. // load dubbo.metadata-report.xxx
  20. //加载元数据配置
  21. loadConfigsOfTypeFromProps(MetadataReportConfig.class);
  22. // config centers has bean loaded before starting config center
  23. //loadConfigsOfTypeFromProps(ConfigCenterConfig.class);
  24. //刷新配置
  25. refreshAll();
  26. //检查配置
  27. checkConfigs();
  28. // set model name
  29. if (StringUtils.isBlank(applicationModel.getModelName())) {
  30. applicationModel.setModelName(applicationModel.getApplicationName());
  31. }
  32. }

技术咨询支持,可以扫描微信公众号进行回复咨询
在这里插入图片描述