Uses of Interface
org.springframework.web.server.WebHandler
Packages that use WebHandler
Package
Description
Implementations to adapt to the underlying
org.springframework.http.client.reactive reactive HTTP adapter
and HttpHandler.Provides common WebHandler implementations and a
WebHandlerDecorator.-
Uses of WebHandler in org.springframework.web.server.adapter
Classes in org.springframework.web.server.adapter that implement WebHandlerModifier and TypeClassDescriptionclassDefault adapter ofWebHandlerto theHttpHandlercontract.Methods in org.springframework.web.server.adapter with parameters of type WebHandlerModifier and TypeMethodDescriptionstatic WebHttpHandlerBuilderWebHttpHandlerBuilder.webHandler(WebHandler webHandler) Static factory method to create a new builder instance.Constructors in org.springframework.web.server.adapter with parameters of type WebHandler -
Uses of WebHandler in org.springframework.web.server.handler
Classes in org.springframework.web.server.handler that implement WebHandlerModifier and TypeClassDescriptionclassWebHandler decorator that invokes one or moreWebExceptionHandlersafter the delegateWebHandler.classclassWebHandlerthat decorates and delegates to anotherWebHandler.Methods in org.springframework.web.server.handler that return WebHandlerModifier and TypeMethodDescriptionWebHandlerDecorator.getDelegate()Return the wrapped delegate.DefaultWebFilterChain.getHandler()Constructors in org.springframework.web.server.handler with parameters of type WebHandlerModifierConstructorDescriptionDefaultWebFilterChain(WebHandler handler, List<WebFilter> filters) Public constructor with the list of filters and the target handler to use.ExceptionHandlingWebHandler(WebHandler delegate, List<WebExceptionHandler> handlers) Create anExceptionHandlingWebHandlerfor the given delegate.FilteringWebHandler(WebHandler handler, List<WebFilter> filters) Constructor.WebHandlerDecorator(WebHandler delegate) Create aWebHandlerDecoratorfor the given delegate.