Polish doc
`ConfigFileEnvironmentPostProcessor` was renamed to `ConfigFileApplicationListener`. See gh-4258
This commit is contained in:
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.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.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
|
||||
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.
|
||||
|
||||
|
||||
|
|
|
@ -99,14 +99,14 @@
|
|||
{
|
||||
"name": "spring.config.name",
|
||||
"type": "java.lang.String",
|
||||
"sourceType": "org.springframework.boot.context.config.ConfigFileEnvironmentPostProcessor",
|
||||
"sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
|
||||
"description": "Config file name.",
|
||||
"defaultValue": "application"
|
||||
},
|
||||
{
|
||||
"name": "spring.config.location",
|
||||
"type": "java.lang.String",
|
||||
"sourceType": "org.springframework.boot.context.config.ConfigFileEnvironmentPostProcessor",
|
||||
"sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
|
||||
"description": "Config file locations."
|
||||
},
|
||||
{
|
||||
|
@ -145,13 +145,13 @@
|
|||
{
|
||||
"name": "spring.profiles.active",
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"name": "spring.profiles.include",
|
||||
"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."
|
||||
}
|
||||
],"hints": [
|
||||
|
|
Loading…
Reference in New Issue