Uses of Interface
org.springframework.boot.web.server.WebServer
Package
Description
Web integrations with Spring's
ApplicationContext
.Embedded reactive and servlet web server implementations backed by Jetty.
Embedded reactive web server implementation backed by Netty.
Embedded reactive and servlet web server implementations backed by Tomcat.
Embedded reactive and servlet web server implementations backed by Undertow.
Reactive based web integrations with Spring's
ApplicationContext
.Reactive web server abstractions.
Servlet based web integrations with Spring's
WebApplicationContext
.Servlet web server abstractions.
-
Uses of WebServer in org.springframework.boot.web.context
Modifier and TypeMethodDescriptionWebServerInitializedEvent.getSource()
Access the source of the event (anWebServer
).WebServerApplicationContext.getWebServer()
Returns theWebServer
that was created by the context ornull
if the server has not yet been created.WebServerInitializedEvent.getWebServer()
Access theWebServer
.ModifierConstructorDescriptionWebServerGracefulShutdownLifecycle
(WebServer webServer) Creates a newWebServerGracefulShutdownLifecycle
that will gracefully shut down the givenwebServer
.protected
WebServerInitializedEvent
(WebServer webServer) -
Uses of WebServer in org.springframework.boot.web.embedded.jetty
Modifier and TypeMethodDescriptionJettyReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) JettyServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) -
Uses of WebServer in org.springframework.boot.web.embedded.netty
Modifier and TypeClassDescriptionclass
WebServer
that can be used to control a Reactor Netty web server.Modifier and TypeMethodDescriptionNettyReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) -
Uses of WebServer in org.springframework.boot.web.embedded.tomcat
Modifier and TypeClassDescriptionclass
WebServer
that can be used to control a Tomcat web server.Modifier and TypeMethodDescriptionTomcatReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) TomcatServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) -
Uses of WebServer in org.springframework.boot.web.embedded.undertow
Modifier and TypeClassDescriptionclass
WebServer
that can be used to control an embedded Undertow server.class
WebServer
that can be used to control an Undertow web server.Modifier and TypeMethodDescriptionUndertowReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) UndertowServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) -
Uses of WebServer in org.springframework.boot.web.reactive.context
Modifier and TypeMethodDescriptionReactiveWebServerApplicationContext.getWebServer()
Returns theWebServer
that was created by the context ornull
if the server has not yet been created.ModifierConstructorDescriptionReactiveWebServerInitializedEvent
(WebServer webServer, ReactiveWebServerApplicationContext applicationContext) -
Uses of WebServer in org.springframework.boot.web.reactive.server
Modifier and TypeMethodDescriptionReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) Gets a new fully configured but pausedWebServer
instance. -
Uses of WebServer in org.springframework.boot.web.servlet.context
Modifier and TypeMethodDescriptionServletWebServerApplicationContext.getWebServer()
Returns theWebServer
that was created by the context ornull
if the server has not yet been created.ModifierConstructorDescriptionServletWebServerInitializedEvent
(WebServer webServer, ServletWebServerApplicationContext applicationContext) -
Uses of WebServer in org.springframework.boot.web.servlet.server
Modifier and TypeMethodDescriptionServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) Gets a new fully configured but pausedWebServer
instance.