From 66987533d108c479906c71a70732734465f9adb1 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 8 Jul 2020 17:58:35 +0100 Subject: [PATCH] Link to application properties section from externalized config list Closes gh-22262 --- .../src/main/asciidoc/spring-boot-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 6d591e0c132..e2ee1109340 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -367,8 +367,8 @@ Properties are considered in the following order: . A `RandomValuePropertySource` that has properties only in `+random.*+`. . <> outside of your packaged jar (`application-\{profile}.properties` and YAML variants). . <> packaged inside your jar (`application-\{profile}.properties` and YAML variants). -. Application properties outside of your packaged jar (`application.properties` and YAML variants). -. Application properties packaged inside your jar (`application.properties` and YAML variants). +. <> outside of your packaged jar (`application.properties` and YAML variants). +. <> packaged inside your jar (`application.properties` and YAML variants). . {spring-framework-api}/context/annotation/PropertySource.html[`@PropertySource`] annotations on your `@Configuration` classes. Please note that such property sources are not added to the `Environment` until the application context is being refreshed. This is too late to configure certain properties such as `+logging.*+` and `+spring.main.*+` which are read before refresh begins.