According to the Akka Configuration documentation:
What is the difference between the -Dconfig.resource and -Dconfig.file arguments?
According to the Akka Configuration documentation:
What is the difference between the -Dconfig.resource and -Dconfig.file arguments?
Copyright © 2021 Jogjafile Inc.
System properties can be used to force a different config source:
config.resourcespecifies a resource name - not a basename, i.e. application.conf not applicationconfig.filespecifies a filesystem path, again it should include the extension, not be a basenameconfig.urlspecifies a URLLoading configuration with
-Dconfig.fileis the way to specify an external file to load,-Dconfig.resource- for internal resources.Taken from: Configuration file syntax and features.