From 0881a62a511bb0ddbefd9e12195ad7ffde47c634 Mon Sep 17 00:00:00 2001 From: Kalpesh Date: Fri, 29 Jul 2022 00:28:28 +0530 Subject: [PATCH] Added @NestedConfigurationProperty to cookie field in org.springframework.boot.autoconfigure.web.ServerProperties.Reactive.Session --- .../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 2ad7a35f75fd..da40c0510f4f 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 @@ -327,6 +327,7 @@ public static class Session { @DurationUnit(ChronoUnit.SECONDS) private Duration timeout = Duration.ofMinutes(30); + @NestedConfigurationProperty private final Cookie cookie = new Cookie(); public Duration getTimeout() {