Uses of Interface
org.springframework.web.server.WebExceptionHandler
Packages that use 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
Methods in org.springframework.web.reactive.config that return WebExceptionHandler -
Uses of WebExceptionHandler in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return types with arguments of type WebExceptionHandlerModifier and TypeMethodDescriptionHandlerStrategies.exceptionHandlers()
Return theWebExceptionHandlers
to be used for handling exceptions.Methods in org.springframework.web.reactive.function.server with parameters of type WebExceptionHandlerModifier and TypeMethodDescriptionHandlerStrategies.Builder.exceptionHandler
(WebExceptionHandler exceptionHandler) Add the given exception handler to this builder. -
Uses of WebExceptionHandler in org.springframework.web.reactive.handler
Classes in org.springframework.web.reactive.handler that implement WebExceptionHandlerModifier 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
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.