-Dconfig什么不同。资源和-Dconfig。akka文件吗?

时间:2022-02-16 22:26:58

According to the Akka Configuration documentation:

根据Akka配置文件:

What is the difference between the -Dconfig.resource and -Dconfig.file arguments?

-Dconfig之间的区别是什么?资源和-Dconfig。文件参数?

1 个解决方案

#1


5  

System properties can be used to force a different config source:

系统属性可用于强制不同的配置源:

  • config.resource specifies a resource name - not a basename, i.e. application.conf not application
  • 配置。资源指定资源名称,而不是basename,即应用程序。相依不是应用程序
  • config.file specifies a filesystem path, again it should include the extension, not be a basename
  • 配置。文件指定文件系统路径,同样应该包括扩展名,而不是basename。
  • config.url specifies a URL
  • 配置。url指定url

Loading configuration with -Dconfig.file is the way to specify an external file to load,

与-Dconfig加载配置。文件是指定要加载的外部文件的方式,

-Dconfig.resource - for internal resources.

-Dconfig。资源——内部资源。

Taken from: Configuration file syntax and features.

取自:配置文件语法和特性。

#1


5  

System properties can be used to force a different config source:

系统属性可用于强制不同的配置源:

  • config.resource specifies a resource name - not a basename, i.e. application.conf not application
  • 配置。资源指定资源名称,而不是basename,即应用程序。相依不是应用程序
  • config.file specifies a filesystem path, again it should include the extension, not be a basename
  • 配置。文件指定文件系统路径,同样应该包括扩展名,而不是basename。
  • config.url specifies a URL
  • 配置。url指定url

Loading configuration with -Dconfig.file is the way to specify an external file to load,

与-Dconfig加载配置。文件是指定要加载的外部文件的方式,

-Dconfig.resource - for internal resources.

-Dconfig。资源——内部资源。

Taken from: Configuration file syntax and features.

取自:配置文件语法和特性。