Uses of Interface
org.springframework.boot.web.server.WebServer
Packages that use 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
Methods in org.springframework.boot.web.context that return WebServerModifier 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
.Constructors in org.springframework.boot.web.context with parameters of type WebServerModifierConstructorDescriptionWebServerGracefulShutdownLifecycle
(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
Classes in org.springframework.boot.web.embedded.jetty that implement WebServerMethods in org.springframework.boot.web.embedded.jetty that return WebServerModifier and TypeMethodDescriptionJettyReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) JettyServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) -
Uses of WebServer in org.springframework.boot.web.embedded.netty
Classes in org.springframework.boot.web.embedded.netty that implement WebServerModifier and TypeClassDescriptionclass
WebServer
that can be used to control a Reactor Netty web server.Methods in org.springframework.boot.web.embedded.netty that return WebServerModifier and TypeMethodDescriptionNettyReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) -
Uses of WebServer in org.springframework.boot.web.embedded.tomcat
Classes in org.springframework.boot.web.embedded.tomcat that implement WebServerModifier and TypeClassDescriptionclass
WebServer
that can be used to control a Tomcat web server.Methods in org.springframework.boot.web.embedded.tomcat that return WebServerModifier and TypeMethodDescriptionTomcatReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) TomcatServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) -
Uses of WebServer in org.springframework.boot.web.embedded.undertow
Classes in org.springframework.boot.web.embedded.undertow that implement WebServerModifier 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.Methods in org.springframework.boot.web.embedded.undertow that return WebServerModifier and TypeMethodDescriptionUndertowReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) UndertowServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) -
Uses of WebServer in org.springframework.boot.web.reactive.context
Methods in org.springframework.boot.web.reactive.context that return WebServerModifier and TypeMethodDescriptionReactiveWebServerApplicationContext.getWebServer()
Returns theWebServer
that was created by the context ornull
if the server has not yet been created.Constructors in org.springframework.boot.web.reactive.context with parameters of type WebServerModifierConstructorDescriptionReactiveWebServerInitializedEvent
(WebServer webServer, ReactiveWebServerApplicationContext applicationContext) -
Uses of WebServer in org.springframework.boot.web.reactive.server
Methods in org.springframework.boot.web.reactive.server that return WebServerModifier and TypeMethodDescriptionReactiveWebServerFactory.getWebServer
(HttpHandler httpHandler) Gets a new fully configured but pausedWebServer
instance. -
Uses of WebServer in org.springframework.boot.web.servlet.context
Methods in org.springframework.boot.web.servlet.context that return WebServerModifier and TypeMethodDescriptionServletWebServerApplicationContext.getWebServer()
Returns theWebServer
that was created by the context ornull
if the server has not yet been created.Constructors in org.springframework.boot.web.servlet.context with parameters of type WebServerModifierConstructorDescriptionServletWebServerInitializedEvent
(WebServer webServer, ServletWebServerApplicationContext applicationContext) -
Uses of WebServer in org.springframework.boot.web.servlet.server
Methods in org.springframework.boot.web.servlet.server that return WebServerModifier and TypeMethodDescriptionServletWebServerFactory.getWebServer
(ServletContextInitializer... initializers) Gets a new fully configured but pausedWebServer
instance.