From 9feb84e234f9cd0342fe1d8ba09a7ea72abf2cce Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 15 Jun 2023 14:36:38 +0100 Subject: [PATCH] Add DynmicPropertySource to ordered list of property sources Closes gh-32901 --- .../src/docs/asciidoc/features/external-config.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc index a65e2062272..b6ae899f574 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc @@ -24,6 +24,7 @@ Sources are considered in the following order: . Command line arguments. . `properties` attribute on your tests. Available on {spring-boot-test-module-api}/context/SpringBootTest.html[`@SpringBootTest`] and the <>. +. {spring-framework-api}/test/context/DynamicPropertySource.html[`@DynamicPropertySource`] annotations in your tests. . {spring-framework-api}/test/context/TestPropertySource.html[`@TestPropertySource`] annotations on your tests. . <> in the `$HOME/.config/spring-boot` directory when devtools is active.