From 88bd63a0dc9d9dbb29e7f81ff4692d631e7237f1 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Mon, 2 Mar 2026 09:12:11 +0700 Subject: [PATCH 1/2] Fix devtools configuration example format See gh-49357 Signed-off-by: Tran Ngoc Nhan --- .../antora/modules/reference/pages/using/devtools.adoc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc index d1499cc6a23..f75c9dd1608 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc @@ -253,11 +253,8 @@ Here is an example where some local class files are excluded and some extra libr [source,properties] ---- -restart: - exclude: - companycommonlibs: "/mycorp-common-[\\w\\d-\\.]/(build|bin|out|target)/" - include: - projectcommon: "/mycorp-myproj-[\\w\\d-\\.]+\\.jar" +restart.exclude.companycommonlibs="/mycorp-common-[\\w\\d-\\.]/(build|bin|out|target)/" +include.projectcommon="/mycorp-myproj-[\\w\\d-\\.]+\\.jar" ---- NOTE: All property keys must be unique. From bf2e7ce8dd63a1e0b1ad2774b595456b06198b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Mon, 2 Mar 2026 09:27:54 +0100 Subject: [PATCH 2/2] Polish "Fix devtools configuration example format" See gh-49357 --- .../src/docs/antora/modules/reference/pages/using/devtools.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc index f75c9dd1608..b01383af142 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc @@ -254,7 +254,7 @@ Here is an example where some local class files are excluded and some extra libr [source,properties] ---- restart.exclude.companycommonlibs="/mycorp-common-[\\w\\d-\\.]/(build|bin|out|target)/" -include.projectcommon="/mycorp-myproj-[\\w\\d-\\.]+\\.jar" +restart.include.projectcommon="/mycorp-myproj-[\\w\\d-\\.]+\\.jar" ---- NOTE: All property keys must be unique.