Class AbstractHandlerExceptionResolver

java.lang.Object
org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver
All Implemented Interfaces:
Ordered, HandlerExceptionResolver
Direct Known Subclasses:
AbstractHandlerMethodExceptionResolver, DefaultHandlerExceptionResolver, ResponseStatusExceptionResolver, SimpleMappingExceptionResolver

public abstract class AbstractHandlerExceptionResolver extends Object implements HandlerExceptionResolver, Ordered
Abstract base class for 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 Details Link icon

    • logger Link icon

      protected final org.apache.commons.logging.Log logger
      Logger available to subclasses.
  • Constructor Details Link icon

    • AbstractHandlerExceptionResolver Link icon

      public AbstractHandlerExceptionResolver()
  • Method Details Link icon

    • setOrder Link icon

      public void setOrder(int order)
    • getOrder Link icon

      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.

      Specified by:
      getOrder in interface Ordered
      Returns:
      the order value
      See Also:
    • setMappedHandlerPredicate Link icon

      public void setMappedHandlerPredicate(Predicate<Object> predicate)
      Use a Predicate to determine which handlers this exception resolver applies to, including when the request was not mapped in which case the handler is null.

      If no handler predicate, nor handlers, nor handler classes are set, the exception resolver applies to all handlers.

      Since:
      6.1.2
    • setMappedHandlers Link icon

      public void setMappedHandlers(Set<?> mappedHandlers)
      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 Link icon

      public void setMappedHandlerClasses(Class<?>... mappedHandlerClasses)
      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 Link icon

      public void addMappedHandlerClass(Class<?> mappedHandlerClass)
      Since:
      6.1
    • getMappedHandlerClasses Link icon

      protected Class<?> @Nullable [] getMappedHandlerClasses()
      Return the configured mapped handler classes.
    • setWarnLogCategory Link icon

      public void setWarnLogCategory(String loggerName)
      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. If null 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 the logException(java.lang.Exception, jakarta.servlet.http.HttpServletRequest) method for custom logging.

      See Also:
    • setPreventResponseCaching Link icon

      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 to true in order to automatically generate HTTP response headers that suppress response caching.

    • resolveException Link icon

      public @Nullable 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 the doResolveException(jakarta.servlet.http.HttpServletRequest, jakarta.servlet.http.HttpServletResponse, java.lang.Object, java.lang.Exception) template method.
      Specified by:
      resolveException in interface HandlerExceptionResolver
      Parameters:
      request - current HTTP request
      response - current HTTP response
      handler - the executed handler, or null 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, or null for default processing in the resolution chain
    • shouldApplyTo Link icon

      protected boolean shouldApplyTo(HttpServletRequest request, @Nullable Object handler)
      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 request
      handler - the executed handler, or null 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 Link icon

      protected boolean hasHandlerMappings()
      Whether there are any handler mappings registered via setMappedHandlers(Set), setMappedHandlerClasses(Class[]), or setMappedHandlerPredicate(Predicate).
      Since:
      5.3
    • logException Link icon

      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.

      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 execution
      request - current HTTP request (useful for obtaining metadata)
      See Also:
    • buildLogMessage Link icon

      protected String buildLogMessage(Exception ex, HttpServletRequest request)
      Build a log message for the given exception, occurred during processing the given request.
      Parameters:
      ex - the exception that got thrown during handler execution
      request - current HTTP request (useful for obtaining metadata)
      Returns:
      the log message to use
    • prepareResponse Link icon

      protected void prepareResponse(Exception ex, HttpServletResponse response)
      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 execution
      response - current HTTP response
      See Also:
    • preventCaching Link icon

      protected void preventCaching(HttpServletResponse response)
      Prevents the response from being cached, through setting corresponding HTTP Cache-Control: no-store header.
      Parameters:
      response - current HTTP response
    • doResolveException Link icon

      protected abstract @Nullable ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex)
      Actually resolve the given exception that got thrown during handler execution, returning a ModelAndView 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 request
      response - current HTTP response
      handler - the executed handler, or null 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, or null for default processing in the resolution chain