From 4a58e872014b6e8124b4cc7ccbba43c3fda68c54 Mon Sep 17 00:00:00 2001 From: "Michael J. Simons" Date: Fri, 28 Apr 2017 16:34:44 +0200 Subject: [PATCH] Remove references to *EmbeddedServletContainerFactory See gh-8532 --- .../src/main/asciidoc/spring-boot-features.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 250b1cfe62..571c07f202 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -2327,17 +2327,17 @@ container's built-in discovery mechanisms will be used instead. [[boot-features-embedded-container-application-context]] -==== The EmbeddedWebApplicationContext +==== The ServletWebServerApplicationContext Under the hood Spring Boot uses a new type of `ApplicationContext` for embedded servlet -container support. The `EmbeddedWebApplicationContext` is a special type of +container support. The `ServletWebServerApplicationContext` is a special type of `WebApplicationContext` that bootstraps itself by searching for a single -`EmbeddedServletContainerFactory` bean. Usually a `TomcatEmbeddedServletContainerFactory`, -`JettyEmbeddedServletContainerFactory`, or `UndertowEmbeddedServletContainerFactory` will +`ServletWebServerFactory` bean. Usually a `TomcatServletWebServerFactory`, +`JettyServletWebServerFactory`, or `UndertowServletWebServerFactory` will have been auto-configured. NOTE: You usually won't need to be aware of these implementation classes. Most applications will be auto-configured and the appropriate `ApplicationContext` and -`EmbeddedServletContainerFactory` will be created on your behalf. +`ServletWebServerFactory` will be created on your behalf.