diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index b907a5f9bb0..0d331ef0063 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -461,8 +461,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.