From 1f0d5f1130a449623cc985c3fe0b9db9f9b697e8 Mon Sep 17 00:00:00 2001 From: Kalpesh Date: Fri, 29 Jul 2022 00:28:28 +0530 Subject: [PATCH] Allow config prop annotation processor to find reactive cookie props See gh-31912 --- .../springframework/boot/autoconfigure/web/ServerProperties.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java index 367934c40e..c44f83792a 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java @@ -323,6 +323,7 @@ public class ServerProperties { @DurationUnit(ChronoUnit.SECONDS) private Duration timeout = Duration.ofMinutes(30); + @NestedConfigurationProperty private final Cookie cookie = new Cookie(); public Duration getTimeout() {