Uses of Interface
org.springframework.web.server.WebExceptionHandler
Package
Description
Spring WebFlux configuration infrastructure.
Provides the types that make up Spring's functional web framework for Reactive environments.
Provides HandlerMapping implementations including abstract base classes.
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.reactive.config
-
Uses of WebExceptionHandler in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptionHandlerStrategies.exceptionHandlers()
Return theWebExceptionHandlers
to be used for handling exceptions.Modifier and TypeMethodDescriptionHandlerStrategies.Builder.exceptionHandler
(WebExceptionHandler exceptionHandler) Add the given exception handler to this builder. -
Uses of WebExceptionHandler in org.springframework.web.reactive.handler
Modifier and TypeClassDescriptionclass
Common WebFlux exception handler that detects instances ofResponseStatusException
(inherited from the base class) as well as exceptions annotated with@ResponseStatus
by determining the HTTP status for them and updating the status of the response accordingly. -
Uses of WebExceptionHandler in org.springframework.web.server.adapter
Modifier and TypeMethodDescriptionWebHttpHandlerBuilder.exceptionHandler
(WebExceptionHandler... handlers) Add the given exception handler(s).Modifier 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
Modifier and TypeClassDescriptionclass
HandleResponseStatusException
by setting the response status.Modifier and TypeMethodDescriptionExceptionHandlingWebHandler.getExceptionHandlers()
Return a read-only list of the configured exception handlers.ModifierConstructorDescriptionExceptionHandlingWebHandler
(WebHandler delegate, List<WebExceptionHandler> handlers) Create anExceptionHandlingWebHandler
for the given delegate.