Interface | Description |
---|---|
ConfigTreePropertySource.Value |
A value returned from the property source which exposes the contents of the
property file.
|
EnvironmentPostProcessor |
Allows for customization of the application's
Environment prior to the
application context being refreshed. |
EnvironmentPostProcessorsFactory |
Factory interface used by the
EnvironmentPostProcessorApplicationListener to
create the EnvironmentPostProcessor instances. |
PropertySourceLoader |
Strategy interface located via
SpringFactoriesLoader and used to load a
PropertySource . |
Class | Description |
---|---|
ConfigTreePropertySource |
PropertySource backed by a directory tree that contains files for each value. |
EnvironmentPostProcessorApplicationListener |
SmartApplicationListener used to trigger EnvironmentPostProcessors registered in the spring.factories file. |
OriginTrackedMapPropertySource | |
PropertiesPropertySourceLoader |
Strategy to load '.properties' files into a
PropertySource . |
RandomValuePropertySource |
PropertySource that returns a random value for any property that starts with
"random.". |
RandomValuePropertySourceEnvironmentPostProcessor |
EnvironmentPostProcessor to add the RandomValuePropertySource . |
SpringApplicationJsonEnvironmentPostProcessor |
An
EnvironmentPostProcessor that parses JSON from
spring.application.json or equivalently SPRING_APPLICATION_JSON and
adds it as a map property source to the Environment . |
SystemEnvironmentPropertySourceEnvironmentPostProcessor |
An
EnvironmentPostProcessor that replaces the systemEnvironment
SystemEnvironmentPropertySource with an
SystemEnvironmentPropertySourceEnvironmentPostProcessor.OriginAwareSystemEnvironmentPropertySource that can track the
SystemEnvironmentOrigin for every system environment property. |
SystemEnvironmentPropertySourceEnvironmentPostProcessor.OriginAwareSystemEnvironmentPropertySource |
SystemEnvironmentPropertySource that also tracks Origin . |
YamlPropertySourceLoader |
Strategy to load '.yml' (or '.yaml') files into a
PropertySource . |
Enum | Description |
---|---|
ConfigTreePropertySource.Option |
Property source options.
|
Environment
support.