Class SimpleMappingExceptionResolver
- All Implemented Interfaces:
- Ordered,- HandlerExceptionResolver
HandlerExceptionResolver implementation
 that allows for mapping exception class names to view names, either for a set of
 given handlers or for all handlers in the DispatcherServlet.
 Error views are analogous to error page JSPs, but can be used with any kind of exception including any checked one, with fine-granular mappings for specific handlers.
- Since:
- 22.11.2003
- Author:
- Juergen Hoeller, Arjen Poutsma, Rossen Stoyanchev
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringThe default name of the exception attribute: "exception".Fields inherited from class org.springframework.web.servlet.handler.AbstractHandlerExceptionResolverloggerFields inherited from interface org.springframework.core.OrderedHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddStatusCode(String viewName, int statusCode) An alternative tosetStatusCodes(Properties)for use with Java-based configuration.protected voidapplyStatusCodeIfPossible(HttpServletRequest request, HttpServletResponse response, int statusCode) Apply the specified HTTP status code to the given response, if possible (that is, if not executing within an include request).protected IntegerdetermineStatusCode(HttpServletRequest request, String viewName) Determine the HTTP status code to apply for the given error view.protected StringdetermineViewName(Exception ex, HttpServletRequest request) Determine the view name for the given exception, first checking against the"excludedExecptions", then searching the"exceptionMappings", and finally using the"defaultErrorView"as a fallback.protected ModelAndViewdoResolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) Actually resolve the given exception that got thrown during on handler execution, returning a ModelAndView that represents a specific error page if appropriate.protected StringfindMatchingViewName(Properties exceptionMappings, Exception ex) Find a matching view name in the given exception mappings.protected intReturn the depth to the superclass matching.protected ModelAndViewgetModelAndView(String viewName, Exception ex) Return a ModelAndView for the given view name and exception.protected ModelAndViewgetModelAndView(String viewName, Exception ex, HttpServletRequest request) Return a ModelAndView for the given request, view name and exception.Returns the HTTP status codes provided viasetStatusCodes(Properties).voidsetDefaultErrorView(String defaultErrorView) Set the name of the default error view.voidsetDefaultStatusCode(int defaultStatusCode) Set the default HTTP status code that this exception resolver will apply if it resolves an error view and if there is no status code mapping defined.voidsetExceptionAttribute(String exceptionAttribute) Set the name of the model attribute as which the exception should be exposed.voidsetExceptionMappings(Properties mappings) Set the mappings between exception class names and error view names.voidsetExcludedExceptions(Class<?>... excludedExceptions) Set one or more exceptions to be excluded from the exception mappings.voidsetStatusCodes(Properties statusCodes) Set the HTTP status code that this exception resolver will apply for a given resolved error view.Methods inherited from class org.springframework.web.servlet.handler.AbstractHandlerExceptionResolveraddMappedHandlerClass, buildLogMessage, getMappedHandlerClasses, getOrder, hasHandlerMappings, logException, prepareResponse, preventCaching, resolveException, setMappedHandlerClasses, setMappedHandlers, setOrder, setPreventResponseCaching, setWarnLogCategory, shouldApplyTo
- 
Field Details- 
DEFAULT_EXCEPTION_ATTRIBUTEThe default name of the exception attribute: "exception".- See Also:
 
 
- 
- 
Constructor Details- 
SimpleMappingExceptionResolverpublic SimpleMappingExceptionResolver()
 
- 
- 
Method Details- 
setExceptionMappingsSet the mappings between exception class names and error view names. The exception class name can be a substring, with no wildcard support at present. A value of "ServletException" would matchjakarta.servlet.ServletExceptionand subclasses, for example.NB: Consider carefully how specific the pattern is, and whether to include package information (which isn't mandatory). For example, "Exception" will match nearly anything, and will probably hide other rules. "java.lang.Exception" would be correct if "Exception" was meant to define a rule for all checked exceptions. With more unusual exception names such as "BaseBusinessException" there's no need to use a FQN. - Parameters:
- mappings- exception patterns (can also be fully qualified class names) as keys, and error view names as values
 
- 
setExcludedExceptionsSet one or more exceptions to be excluded from the exception mappings. Excluded exceptions are checked first and if one of them equals the actual exception, the exception will remain unresolved.- Parameters:
- excludedExceptions- one or more excluded exception types
 
- 
setDefaultErrorViewSet the name of the default error view. This view will be returned if no specific mapping was found.Default is none. 
- 
setStatusCodesSet the HTTP status code that this exception resolver will apply for a given resolved error view. Keys are view names; values are status codes.Note that this error code will only get applied in case of a top-level request. It will not be set for an include request, since the HTTP status cannot be modified from within an include. If not specified, the default status code will be applied. - See Also:
 
- 
addStatusCodeAn alternative tosetStatusCodes(Properties)for use with Java-based configuration.
- 
getStatusCodesAsMapReturns the HTTP status codes provided viasetStatusCodes(Properties). Keys are view names; values are status codes.
- 
setDefaultStatusCodepublic void setDefaultStatusCode(int defaultStatusCode) Set the default HTTP status code that this exception resolver will apply if it resolves an error view and if there is no status code mapping defined.Note that this error code will only get applied in case of a top-level request. It will not be set for an include request, since the HTTP status cannot be modified from within an include. If not specified, no status code will be applied, either leaving this to the controller or view, or keeping the servlet engine's default of 200 (OK). - Parameters:
- defaultStatusCode- the HTTP status code value, for example 500 (- HttpServletResponse.SC_INTERNAL_SERVER_ERROR) or 404 (- HttpServletResponse.SC_NOT_FOUND)
- See Also:
 
- 
setExceptionAttributeSet the name of the model attribute as which the exception should be exposed. Default is "exception".This can be either set to a different attribute name or to nullfor not exposing an exception attribute at all.- See Also:
 
- 
doResolveException@Nullable protected ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex) Actually resolve the given exception that got thrown during on 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 resolved applies ("mappedHandlers" etc), so an implementation may simply proceed with its actual exception handling. - Specified by:
- doResolveExceptionin class- AbstractHandlerExceptionResolver
- Parameters:
- request- current HTTP request
- response- current HTTP response
- handler- the executed handler, or- nullif 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 ModelAndViewto forward to, ornullfor default processing in the resolution chain
 
- 
determineViewNameDetermine the view name for the given exception, first checking against the"excludedExecptions", then searching the"exceptionMappings", and finally using the"defaultErrorView"as a fallback.- Parameters:
- ex- the exception that got thrown during handler execution
- request- current HTTP request (useful for obtaining metadata)
- Returns:
- the resolved view name, or nullif excluded or none found
 
- 
findMatchingViewNameFind a matching view name in the given exception mappings.- Parameters:
- exceptionMappings- mappings between exception class names and error view names
- ex- the exception that got thrown during handler execution
- Returns:
- the view name, or nullif none found
- See Also:
 
- 
getDepthReturn the depth to the superclass matching.0 means ex matches exactly. Returns -1 if there's no match. Otherwise, returns depth. Lowest depth wins. 
- 
determineStatusCodeDetermine the HTTP status code to apply for the given error view.The default implementation returns the status code for the given view name (specified through the statusCodesproperty), or falls back to thedefaultStatusCodeif there is no match.Override this in a custom subclass to customize this behavior. - Parameters:
- request- current HTTP request
- viewName- the name of the error view
- Returns:
- the HTTP status code to use, or nullfor the servlet container's default (200 in case of a standard error view)
- See Also:
 
- 
applyStatusCodeIfPossibleprotected void applyStatusCodeIfPossible(HttpServletRequest request, HttpServletResponse response, int statusCode) Apply the specified HTTP status code to the given response, if possible (that is, if not executing within an include request).- Parameters:
- request- current HTTP request
- response- current HTTP response
- statusCode- the status code to apply
- See Also:
 
- 
getModelAndViewReturn a ModelAndView for the given request, view name and exception.The default implementation delegates to getModelAndView(String, Exception).- Parameters:
- viewName- the name of the error view
- ex- the exception that got thrown during handler execution
- request- current HTTP request (useful for obtaining metadata)
- Returns:
- the ModelAndView instance
 
- 
getModelAndViewReturn a ModelAndView for the given view name and exception.The default implementation adds the specified exception attribute. Can be overridden in subclasses. - Parameters:
- viewName- the name of the error view
- ex- the exception that got thrown during handler execution
- Returns:
- the ModelAndView instance
- See Also:
 
 
-