Polish doc

`ConfigFileEnvironmentPostProcessor` was renamed to
`ConfigFileApplicationListener`.

See gh-4258
pull/4334/head
Stephane Nicoll 9 years ago
parent 833aac2b26
commit 6491eafc4a

@ -31,7 +31,7 @@ content into your application; rather pick only the properties that you need.
banner.charset=UTF-8 # banner file encoding banner.charset=UTF-8 # banner file encoding
banner.location=classpath:banner.txt # banner file location banner.location=classpath:banner.txt # banner file location
# SPRING CONFIG ({sc-spring-boot}/context/config/ConfigFileEnvironmentPostProcessor.{sc-ext}[ConfigFileEnvironmentPostProcessor]) # SPRING CONFIG ({sc-spring-boot}/context/config/ConfigFileApplicationListener.{sc-ext}[ConfigFileApplicationListener])
spring.config.name= # config file name (default to 'application') spring.config.name= # config file name (default to 'application')
spring.config.location= # location of config file spring.config.location= # location of config file

@ -188,7 +188,7 @@ extension are also added to the list by default.
Spring Boot logs the configuration files that are loaded at `DEBUG` level and the Spring Boot logs the configuration files that are loaded at `DEBUG` level and the
candidates it has not found at `TRACE` level. candidates it has not found at `TRACE` level.
See {sc-spring-boot}/context/config/ConfigFileEnvironmentPostProcessor.{sc-ext}[`ConfigFileEnvironmentPostProcessor`] See {sc-spring-boot}/context/config/ConfigFileApplicationListener.{sc-ext}[`ConfigFileApplicationListener`]
for more detail. for more detail.

@ -99,14 +99,14 @@
{ {
"name": "spring.config.name", "name": "spring.config.name",
"type": "java.lang.String", "type": "java.lang.String",
"sourceType": "org.springframework.boot.context.config.ConfigFileEnvironmentPostProcessor", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Config file name.", "description": "Config file name.",
"defaultValue": "application" "defaultValue": "application"
}, },
{ {
"name": "spring.config.location", "name": "spring.config.location",
"type": "java.lang.String", "type": "java.lang.String",
"sourceType": "org.springframework.boot.context.config.ConfigFileEnvironmentPostProcessor", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Config file locations." "description": "Config file locations."
}, },
{ {
@ -145,13 +145,13 @@
{ {
"name": "spring.profiles.active", "name": "spring.profiles.active",
"type": "java.lang.String", "type": "java.lang.String",
"sourceType": "org.springframework.boot.context.config.ConfigFileEnvironmentPostProcessor", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Comma-separated list of active profiles. Can be overridden by a command line switch." "description": "Comma-separated list of active profiles. Can be overridden by a command line switch."
}, },
{ {
"name": "spring.profiles.include", "name": "spring.profiles.include",
"type": "java.lang.String", "type": "java.lang.String",
"sourceType": "org.springframework.boot.context.config.ConfigFileEnvironmentPostProcessor", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Unconditionally activate the specified comma separated profiles." "description": "Unconditionally activate the specified comma separated profiles."
} }
],"hints": [ ],"hints": [

Loading…
Cancel
Save