Uses of Interface
org.springframework.http.server.reactive.HttpHandler
Package
Description
Abstractions for reactive HTTP server support including a
ServerHttpRequest
and
ServerHttpResponse
along with an
HttpHandler
for processing.Support for testing Spring WebFlux server endpoints via
WebTestClient
.Provides the types that make up Spring's functional web framework for Reactive environments.
Implementations to adapt to the underlying
org.springframework.http.client.reactive
reactive HTTP adapter
and HttpHandler
.-
Uses of HttpHandler in org.springframework.http.server.reactive
Modifier and TypeClassDescriptionclass
HttpHandler
delegating requests to one of severalHttpHandler
's based on simple, prefix-based mappings.ModifierConstructorDescriptionJettyCoreHttpHandlerAdapter
(HttpHandler httpHandler) JettyHttpHandlerAdapter
(HttpHandler httpHandler) ReactorHttpHandlerAdapter
(HttpHandler httpHandler) ReactorNetty2HttpHandlerAdapter
(HttpHandler httpHandler) ServletHttpHandlerAdapter
(HttpHandler httpHandler) TomcatHttpHandlerAdapter
(HttpHandler httpHandler) UndertowHttpHandlerAdapter
(HttpHandler httpHandler) ModifierConstructorDescriptionContextPathCompositeHandler
(Map<String, ? extends HttpHandler> handlerMap) -
Uses of HttpHandler in org.springframework.test.web.reactive.server
ModifierConstructorDescriptionHttpHandlerConnector
(HttpHandler handler) Constructor with theHttpHandler
to handle requests with. -
Uses of HttpHandler in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptionstatic HttpHandler
RouterFunctions.toHttpHandler
(RouterFunction<?> routerFunction) static HttpHandler
RouterFunctions.toHttpHandler
(RouterFunction<?> routerFunction, HandlerStrategies strategies) Convert the given router function into anHttpHandler
, using the given strategies. -
Uses of HttpHandler in org.springframework.web.server.adapter
Modifier and TypeClassDescriptionclass
Default adapter ofWebHandler
to theHttpHandler
contract.Modifier and TypeMethodDescriptionWebHttpHandlerBuilder.httpHandlerDecorator
(Function<HttpHandler, HttpHandler> handlerDecorator) Configure aFunction
to decorate theHttpHandler
returned by this builder which effectively wraps the entireWebExceptionHandler
-WebFilter
-WebHandler
processing chain.WebHttpHandlerBuilder.httpHandlerDecorator
(Function<HttpHandler, HttpHandler> handlerDecorator) Configure aFunction
to decorate theHttpHandler
returned by this builder which effectively wraps the entireWebExceptionHandler
-WebFilter
-WebHandler
processing chain.