From 0e56cd08ea93c65882f70f5d0de82da74ff1cc2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Tue, 25 Nov 2025 11:19:19 +0100 Subject: [PATCH] Fix inconsistency in Graceful Shutdown section See gh-46917 Closes gh-48284 --- .../antora/modules/reference/pages/web/graceful-shutdown.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/web/graceful-shutdown.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/web/graceful-shutdown.adoc index d05fc2cdcc9..cdb312e7e60 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/web/graceful-shutdown.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/web/graceful-shutdown.adoc @@ -1,7 +1,7 @@ [[web.graceful-shutdown]] = Graceful Shutdown -Graceful shutdown is enabled by default with all four embedded web servers (Jetty, Reactor Netty, and Tomcat) and with both reactive and servlet-based web applications. +Graceful shutdown is enabled by default with all three embedded web servers (Jetty, Reactor Netty, and Tomcat) and with both reactive and servlet-based web applications. It occurs as part of closing the application context and is performed in the earliest phase of stopping javadoc:org.springframework.context.SmartLifecycle[] beans. This stop processing uses a timeout which provides a grace period during which existing requests will be allowed to complete but no new requests will be permitted.