Class AbstractHandlerExceptionResolver
- All Implemented Interfaces:
Ordered
,HandlerExceptionResolver
- Direct Known Subclasses:
AbstractHandlerMethodExceptionResolver
,DefaultHandlerExceptionResolver
,ResponseStatusExceptionResolver
,SimpleMappingExceptionResolver
HandlerExceptionResolver
implementations.
Supports mapped handlers and
handler classes that the resolver
should be applied to and implements the Ordered
interface.
- Since:
- 3.0
- Author:
- Arjen Poutsma, Juergen Hoeller, Sam Brannen
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addMappedHandlerClass
(Class<?> mappedHandlerClass) Alternative tosetMappedHandlerClasses(Class[])
.protected String
buildLogMessage
(Exception ex, HttpServletRequest request) Build a log message for the given exception, occurred during processing the given request.protected abstract ModelAndView
doResolveException
(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) Actually resolve the given exception that got thrown during handler execution, returning aModelAndView
that represents a specific error page if appropriate.protected Class<?>[]
Return theconfigured
mapped handler classes.int
getOrder()
Get the order value of this object.protected boolean
Whether there are any handler mappings registered viasetMappedHandlers(Set)
,setMappedHandlerClasses(Class[])
, orsetMappedHandlerPredicate(Predicate)
.protected void
logException
(Exception ex, HttpServletRequest request) Log the given exception at warn level, provided that warn logging has been activated through the"warnLogCategory"
property.protected void
prepareResponse
(Exception ex, HttpServletResponse response) Prepare the response for the exceptional case.protected void
preventCaching
(HttpServletResponse response) Prevents the response from being cached, through setting corresponding HTTPCache-Control: no-store
header.resolveException
(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) Check whether this resolver is supposed to apply (i.e.void
setMappedHandlerClasses
(Class<?>... mappedHandlerClasses) Specify the set of classes that this exception resolver should apply to.void
setMappedHandlerPredicate
(Predicate<Object> predicate) Use aPredicate
to determine which handlers this exception resolver applies to, including when the request was not mapped in which case the handler isnull
.void
setMappedHandlers
(Set<?> mappedHandlers) Specify the set of handlers that this exception resolver should apply to.void
setOrder
(int order) void
setPreventResponseCaching
(boolean preventResponseCaching) Specify whether to prevent HTTP response caching for any view resolved by this exception resolver.void
setWarnLogCategory
(String loggerName) Set the log category for warn logging.protected boolean
shouldApplyTo
(HttpServletRequest request, Object handler) Check whether this resolver is supposed to apply to the given handler.
-
Field Details
-
logger
Logger available to subclasses.
-
-
Constructor Details
-
AbstractHandlerExceptionResolver
public AbstractHandlerExceptionResolver()
-
-
Method Details
-
setOrder
public void setOrder(int order) -
getOrder
public int getOrder()Description copied from interface:Ordered
Get the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startup
values).Same order values will result in arbitrary sort positions for the affected objects.
-
setMappedHandlerPredicate
Use aPredicate
to determine which handlers this exception resolver applies to, including when the request was not mapped in which case the handler isnull
.If no handler predicate, nor handlers, nor handler classes are set, the exception resolver applies to all handlers.
- Since:
- 6.1.2
-
setMappedHandlers
Specify the set of handlers that this exception resolver should apply to.If no handler predicate, nor handlers, nor handler classes are set, the exception resolver applies to all handlers.
- See Also:
-
setMappedHandlerClasses
Specify the set of classes that this exception resolver should apply to. The resolver will only apply to handlers of the specified types; the specified types may be interfaces or superclasses of handlers as well.If no handler predicate, nor handlers, nor handler classes are set, the exception resolver applies to all handlers.
- See Also:
-
addMappedHandlerClass
Alternative tosetMappedHandlerClasses(Class[])
.- Since:
- 6.1
-
getMappedHandlerClasses
Return theconfigured
mapped handler classes. -
setWarnLogCategory
Set the log category for warn logging. The name will be passed to the underlying logger implementation through Commons Logging, getting interpreted as a log category according to the logger's configuration. Ifnull
or empty String is passed, warn logging is turned off.By default there is no warn logging although subclasses like
DefaultHandlerExceptionResolver
can change that default. Specify this setting to activate warn logging into a specific category. Alternatively, override thelogException(java.lang.Exception, jakarta.servlet.http.HttpServletRequest)
method for custom logging. -
setPreventResponseCaching
public void setPreventResponseCaching(boolean preventResponseCaching) Specify whether to prevent HTTP response caching for any view resolved by this exception resolver.Default is
false
. Switch this totrue
in order to automatically generate HTTP response headers that suppress response caching. -
resolveException
@Nullable public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex) Check whether this resolver is supposed to apply (i.e. if the supplied handler matches any of the configured handlers or handler classes), and then delegate to thedoResolveException(jakarta.servlet.http.HttpServletRequest, jakarta.servlet.http.HttpServletResponse, java.lang.Object, java.lang.Exception)
template method.- Specified by:
resolveException
in interfaceHandlerExceptionResolver
- Parameters:
request
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler, ornull
if none chosen at the time of the exception (for example, if multipart resolution failed)ex
- the exception that got thrown during handler execution- Returns:
- a corresponding
ModelAndView
to forward to, ornull
for default processing in the resolution chain
-
shouldApplyTo
Check whether this resolver is supposed to apply to the given handler.The default implementation checks against the configured handlerPredicate handlers and handler classes, if any.
- Parameters:
request
- current HTTP requesthandler
- the executed handler, ornull
if none chosen at the time of the exception (for example, if multipart resolution failed)- Returns:
- whether this resolved should proceed with resolving the exception for the given request and handler
- See Also:
-
hasHandlerMappings
protected boolean hasHandlerMappings()Whether there are any handler mappings registered viasetMappedHandlers(Set)
,setMappedHandlerClasses(Class[])
, orsetMappedHandlerPredicate(Predicate)
.- Since:
- 5.3
-
logException
Log the given exception at warn level, provided that warn logging has been activated through the"warnLogCategory"
property.Calls
buildLogMessage(java.lang.Exception, jakarta.servlet.http.HttpServletRequest)
in order to determine the concrete message to log.- Parameters:
ex
- the exception that got thrown during handler executionrequest
- current HTTP request (useful for obtaining metadata)- See Also:
-
buildLogMessage
Build a log message for the given exception, occurred during processing the given request.- Parameters:
ex
- the exception that got thrown during handler executionrequest
- current HTTP request (useful for obtaining metadata)- Returns:
- the log message to use
-
prepareResponse
Prepare the response for the exceptional case.The default implementation prevents the response from being cached, if the
"preventResponseCaching"
property has been set to "true".- Parameters:
ex
- the exception that got thrown during handler executionresponse
- current HTTP response- See Also:
-
preventCaching
Prevents the response from being cached, through setting corresponding HTTPCache-Control: no-store
header.- Parameters:
response
- current HTTP response
-
doResolveException
@Nullable protected abstract ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex) Actually resolve the given exception that got thrown during handler execution, returning aModelAndView
that represents a specific error page if appropriate.May be overridden in subclasses, in order to apply specific exception checks. Note that this template method will be invoked after checking whether this resolver applies ("mappedHandlers" etc), so an implementation may simply proceed with its actual exception handling.
- Parameters:
request
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler, ornull
if none chosen at the time of the exception (for example, if multipart resolution failed)ex
- the exception that got thrown during handler execution- Returns:
- a corresponding
ModelAndView
to forward to, ornull
for default processing in the resolution chain
-