Interface ConfigSource
- a JNDI-backed naming service
- a properties file
- a database table
Implementations of this interface have the responsibility to get the value corresponding to a property name, and to enumerate available property names.
A configuration source is always read-only; any potential updates of the backing configuration values must be handled directly inside each configuration source instance.
Default configuration sources
Some configuration sources are known as default configuration sources. These configuration sources are normally available in all automatically-created configurations, and can be manually added to manually-created configurations as well. The default configuration sources are:
- System properties, with an ordinal value of
400
- Environment properties, with an ordinal value of
300
- The
/META-INF/microprofile-config.properties
resource, with an ordinal value of100
Environment variable name mapping rules
Some operating systems allow only alphabetic characters or an underscore (_
) in environment variable names.
Other characters such as .
, /
, etc. may be disallowed. In order to set a value for a config property
that has a name containing such disallowed characters from an environment variable, the following rules are used.
Three environment variables are searched for a given property name (e.g. "com.ACME.size
"):
- The exact name (i.e. "
com.ACME.size
") - The name, with each character that is neither alphanumeric nor _ replaced with _ (i.e.
"
com_ACME_size
") - The name, with each character that is neither alphanumeric nor _ replaced with _ and then converted to upper case
(i.e. "
COM_ACME_SIZE
")
The first of these environment variables that is found for a given name is returned.
Configuration source discovery
Discovered configuration sources are loaded via the ServiceLoader
mechanism and and can be
registered by providing a resource named META-INF/services/org.eclipse.microprofile.config.spi.ConfigSource
,
which contains the fully qualified ConfigSource
implementation class name as its content.
Configuration sources may also be added by defining ConfigSourceProvider
classes which are discoverable in this manner.
Closing configuration sources
If a configuration source implements the AutoCloseable
interface, then its close method will be called when the underlying configuration is released.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The name of the configuration ordinal property, "config_ordinal
".static final int
The default configuration ordinal value,100
. -
Method Summary
Modifier and TypeMethodDescriptiongetName()
The name of the configuration source.default int
Return the ordinal priority value of this configuration source.Return the properties in this configuration source as a map.Gets all property names known to this configuration source, potentially without evaluating the values.Return the value for the specified property in this configuration source.
-
Field Details
-
CONFIG_ORDINAL
The name of the configuration ordinal property, "config_ordinal
".- See Also:
-
DEFAULT_ORDINAL
static final int DEFAULT_ORDINALThe default configuration ordinal value,100
.- See Also:
-
-
Method Details
-
getProperties
Return the properties in this configuration source as a map.- Returns:
- a map containing properties of this configuration source
-
getPropertyNames
Gets all property names known to this configuration source, potentially without evaluating the values. The returned property names may be a subset of the names of the total set of retrievable properties in this config source.The returned set is not required to allow concurrent or multi-threaded iteration; however, if the same set is returned by multiple calls to this method, then the implementation must support concurrent and multi-threaded iteration of that set.
The set of keys returned may be a point-in-time snapshot, or may change over time (even during active iteration) to reflect dynamic changes to the available set of keys.
- Returns:
- a set of property names that are known to this configuration source
-
getOrdinal
default int getOrdinal()Return the ordinal priority value of this configuration source.If a property is specified in multiple config sources, the value in the config source with the highest ordinal takes precedence. For configuration sources with the same ordinal value, the configuration source name will be used for sorting according to string sorting criteria.
Note that this method is only evaluated during the construction of the configuration, and does not affect the ordering of configuration sources within a configuration after that time.
The ordinal values for the default configuration sources can be found above.
Any configuration source which is a part of an application will typically use an ordinal between 0 and 200. Configuration sources provided by the container or 'environment' typically use an ordinal higher than 200. A framework which intends have values overridden by the application will use ordinals between 0 and 100.
The default implementation of this method looks for a configuration property named "
config_ordinal
" to determine the ordinal value for this configuration source. If the property is not found, then the default ordinal value is used.This method may be overridden by configuration source implementations to provide a different behavior.
- Returns:
- the ordinal value
-
getValue
Return the value for the specified property in this configuration source.- Parameters:
propertyName
- the property name- Returns:
- the property value, or
null
if the property is not present
-
getName
String getName()The name of the configuration source. The name might be used for logging or for analysis of configured values, and also may be used in ordering decisions.An example of a configuration source name is "
property-file mylocation/myprops.properties
".- Returns:
- the name of the configuration source
-