Document ConfigurableServletWebServerFactory variants

Closes gh-13083
This commit is contained in:
Madhura Bhave
2018-06-05 13:41:32 -07:00
parent bf56ec496d
commit d0a2a8e929

View File

@@ -2982,8 +2982,7 @@ If you need to programmatically configure your embedded servlet container, you c
register a Spring bean that implements the `WebServerFactoryCustomizer` interface.
`WebServerFactoryCustomizer` provides access to the
`ConfigurableServletWebServerFactory`, which includes numerous customization setter
methods. Dedicated variants exist for Tomcat, Jetty, and Undertow. The following example
shows programmatically setting the port:
methods. The following example shows programmatically setting the port:
[source,java,indent=0]
----
@@ -3002,7 +3001,9 @@ shows programmatically setting the port:
}
----
NOTE: `TomcatServletWebServerFactory`, `JettyServletWebServerFactory` and `UndertowServletWebServerFactory`
are dedicated variants of `ConfigurableServletWebServerFactory` that have additional customization setter methods
for Tomcat, Jetty and Undertow respectively.
[[boot-features-customizing-configurableservletwebserverfactory-directly]]
===== Customizing ConfigurableServletWebServerFactory Directly