Class NettyWebServer
java.lang.Object
org.springframework.boot.web.embedded.netty.NettyWebServer
- All Implemented Interfaces:
- WebServer
WebServer that can be used to control a Reactor Netty web server. Usually this
 class should be created using the NettyReactiveWebServerFactory and not
 directly.- Since:
- 2.0.0
- Author:
- Brian Clozel, Madhura Bhave, Andy Wilkinson
- 
Constructor SummaryConstructorsConstructorDescriptionNettyWebServer(reactor.netty.http.server.HttpServer httpServer, ReactorHttpHandlerAdapter handlerAdapter, Duration lifecycleTimeout, Shutdown shutdown, ReactorResourceFactory resourceFactory) Creates a newNettyWebServerinstance.
- 
Method SummaryModifier and TypeMethodDescriptionintgetPort()Return the port this server is listening on.protected StringvoidsetRouteProviders(List<NettyRouteProvider> routeProviders) voidshutDownGracefully(GracefulShutdownCallback callback) Initiates a graceful shutdown of the Netty web server.voidstart()Starts the web server.voidstop()Stops the web server.
- 
Constructor Details- 
NettyWebServerpublic NettyWebServer(reactor.netty.http.server.HttpServer httpServer, ReactorHttpHandlerAdapter handlerAdapter, Duration lifecycleTimeout, Shutdown shutdown, ReactorResourceFactory resourceFactory) Creates a newNettyWebServerinstance.- Parameters:
- httpServer- the HTTP server
- handlerAdapter- the handler adapter
- lifecycleTimeout- the lifecycle timeout, may be- null
- shutdown- the shutdown, may be- null
- resourceFactory- the factory for the server's- loop resources, may be- null
- Since:
- 3.2.0
 
 
- 
- 
Method Details- 
setRouteProviders
- 
startDescription copied from interface:WebServerStarts the web server. Calling this method on an already started server has no effect.- Specified by:
- startin interface- WebServer
- Throws:
- WebServerException- if the server cannot be started
 
- 
getStartedLogMessage
- 
shutDownGracefullyInitiates a graceful shutdown of the Netty web server. Handling of new requests is prevented and the givencallbackis invoked at the end of the attempt. The attempt can be explicitly ended by invokingstop().Once shutdown has been initiated Netty will reject any new connections. Requests + on existing idle connections will also be rejected. - Specified by:
- shutDownGracefullyin interface- WebServer
- Parameters:
- callback- the callback to invoke when the graceful shutdown completes
 
- 
stopDescription copied from interface:WebServerStops the web server. Calling this method on an already stopped server has no effect.- Specified by:
- stopin interface- WebServer
- Throws:
- WebServerException- if the server cannot be stopped
 
- 
getPortpublic int getPort()Description copied from interface:WebServerReturn the port this server is listening on.
 
-