Uses of Interface
org.springframework.http.server.reactive.HttpHandler
Packages that use 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
Classes in org.springframework.http.server.reactive that implement HttpHandlerModifier and TypeClassDescriptionclass
HttpHandler
delegating requests to one of severalHttpHandler
's based on simple, prefix-based mappings.Constructors in org.springframework.http.server.reactive with parameters of type HttpHandlerModifierConstructorDescriptionJettyCoreHttpHandlerAdapter
(HttpHandler httpHandler) JettyHttpHandlerAdapter
(HttpHandler httpHandler) ReactorHttpHandlerAdapter
(HttpHandler httpHandler) ReactorNetty2HttpHandlerAdapter
(HttpHandler httpHandler) ServletHttpHandlerAdapter
(HttpHandler httpHandler) TomcatHttpHandlerAdapter
(HttpHandler httpHandler) UndertowHttpHandlerAdapter
(HttpHandler httpHandler) Constructor parameters in org.springframework.http.server.reactive with type arguments of type HttpHandlerModifierConstructorDescriptionContextPathCompositeHandler
(Map<String, ? extends HttpHandler> handlerMap) -
Uses of HttpHandler in org.springframework.test.web.reactive.server
Constructors in org.springframework.test.web.reactive.server with parameters of type HttpHandlerModifierConstructorDescriptionHttpHandlerConnector
(HttpHandler handler) Constructor with theHttpHandler
to handle requests with. -
Uses of HttpHandler in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return HttpHandlerModifier 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
Classes in org.springframework.web.server.adapter that implement HttpHandlerModifier and TypeClassDescriptionclass
Default adapter ofWebHandler
to theHttpHandler
contract.Methods in org.springframework.web.server.adapter that return HttpHandlerMethod parameters in org.springframework.web.server.adapter with type arguments of type HttpHandlerModifier 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.