From dc68142bd1b10287c17e66890a5d92929323e3f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Mon, 18 Aug 2025 11:35:42 +0200 Subject: [PATCH] Restore configuration metadata for spring.web.resources.chain.enabled See b6e4533296c24ce2ecd35eed8dd1027770386e04 --- .../springframework/boot/autoconfigure/web/WebProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebProperties.java b/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebProperties.java index bf09416c94e..bd17d69601e 100644 --- a/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebProperties.java +++ b/core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebProperties.java @@ -188,7 +188,7 @@ public class WebProperties { return this.customized || getStrategy().hasBeenCustomized(); } - public void setEnabled(boolean enabled) { + public void setEnabled(Boolean enabled) { this.enabled = enabled; this.customized = true; }