spring-framework / org.springframework.web.server.adapter

Package org.springframework.web.server.adapter

Types

AbstractReactiveWebInitializer

abstract class AbstractReactiveWebInitializer : WebApplicationInitializer

Base class for a org.springframework.web.WebApplicationInitializer that installs a Spring Reactive Web Application on a Servlet container.

Spring configuration is loaded and given to WebHttpHandlerBuilder which scans the context looking for specific beans and creates a reactive HttpHandler. The resulting handler is installed as a Servlet through the ServletHttpHandlerAdapter.

HttpWebHandlerAdapter

open class HttpWebHandlerAdapter : WebHandlerDecorator, HttpHandler

Default adapter of WebHandler to the HttpHandler contract.

By default creates and configures a DefaultServerWebExchange and then invokes the target WebHandler.