Uses of Interface
org.springframework.web.server.WebExceptionHandler
Packages that use WebExceptionHandler
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 WebExceptionHandler in org.springframework.web.server.adapter
Methods in org.springframework.web.server.adapter with parameters of type WebExceptionHandlerModifier and TypeMethodDescriptionWebHttpHandlerBuilder.exceptionHandler
(WebExceptionHandler... handlers) Add the given exception handler(s).Method parameters in org.springframework.web.server.adapter with type arguments of type WebExceptionHandlerModifier and TypeMethodDescriptionWebHttpHandlerBuilder.exceptionHandlers
(Consumer<List<WebExceptionHandler>> consumer) Manipulate the "live" list of currently configured exception handlers. -
Uses of WebExceptionHandler in org.springframework.web.server.handler
Classes in org.springframework.web.server.handler that implement WebExceptionHandlerModifier and TypeClassDescriptionclass
HandleResponseStatusException
by setting the response status.Methods in org.springframework.web.server.handler that return types with arguments of type WebExceptionHandlerModifier and TypeMethodDescriptionExceptionHandlingWebHandler.getExceptionHandlers()
Return a read-only list of the configured exception handlers.Constructor parameters in org.springframework.web.server.handler with type arguments of type WebExceptionHandlerModifierConstructorDescriptionExceptionHandlingWebHandler
(WebHandler delegate, List<WebExceptionHandler> handlers) Create anExceptionHandlingWebHandler
for the given delegate.