Class ResponseStatusExceptionResolver
- All Implemented Interfaces:
Aware
,MessageSourceAware
,Ordered
,HandlerExceptionResolver
HandlerExceptionResolver
that uses the @ResponseStatus
annotation to map exceptions to HTTP status codes.
This exception resolver is enabled by default in the
DispatcherServlet
and the MVC Java config and the MVC namespace.
As of 4.2 this resolver also looks recursively for @ResponseStatus
present on cause exceptions, and as of 4.2.2 this resolver supports
attribute overrides for @ResponseStatus
in custom composed annotations.
As of 5.0 this resolver also supports ResponseStatusException
.
- Since:
- 3.0
- Author:
- Arjen Poutsma, Rossen Stoyanchev, Sam Brannen
- See Also:
-
Field Summary
Fields inherited from class org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver
logger
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected ModelAndView
applyStatusAndReason
(int statusCode, String reason, HttpServletResponse response) Apply the resolved status code and reason to the response.protected 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 ModelAndView
resolveResponseStatus
(ResponseStatus responseStatus, HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) Template method that handles the@ResponseStatus
annotation.protected ModelAndView
resolveResponseStatusException
(ResponseStatusException ex, HttpServletRequest request, HttpServletResponse response, Object handler) Template method that handles anResponseStatusException
.void
setMessageSource
(MessageSource messageSource) Set the MessageSource that this object runs in.Methods inherited from class org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver
buildLogMessage, getOrder, hasHandlerMappings, logException, prepareResponse, preventCaching, resolveException, setMappedHandlerClasses, setMappedHandlers, setOrder, setPreventResponseCaching, setWarnLogCategory, shouldApplyTo
-
Constructor Details
-
ResponseStatusExceptionResolver
public ResponseStatusExceptionResolver()
-
-
Method Details
-
setMessageSource
Description copied from interface:MessageSourceAware
Set the MessageSource that this object runs in.Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked before ApplicationContextAware's setApplicationContext.
- Specified by:
setMessageSource
in interfaceMessageSourceAware
- Parameters:
messageSource
- message source to be used by this object
-
doResolveException
@Nullable protected ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex) Description copied from class:AbstractHandlerExceptionResolver
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 resolved applies ("mappedHandlers" etc), so an implementation may simply proceed with its actual exception handling.
- Specified by:
doResolveException
in classAbstractHandlerExceptionResolver
- 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
-
resolveResponseStatus
protected ModelAndView resolveResponseStatus(ResponseStatus responseStatus, HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex) throws Exception Template method that handles the@ResponseStatus
annotation.The default implementation delegates to
applyStatusAndReason(int, java.lang.String, jakarta.servlet.http.HttpServletResponse)
with the status code and reason from the annotation.- Parameters:
responseStatus
- the@ResponseStatus
annotationrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler, ornull
if none chosen at the time of the exception, e.g. if multipart resolution failedex
- the exception- Returns:
- an empty ModelAndView, i.e. exception resolved
- Throws:
Exception
-
resolveResponseStatusException
protected ModelAndView resolveResponseStatusException(ResponseStatusException ex, HttpServletRequest request, HttpServletResponse response, @Nullable Object handler) throws Exception Template method that handles anResponseStatusException
.The default implementation applies the headers from
ResponseStatusException.getHeaders()
and delegates toapplyStatusAndReason(int, java.lang.String, jakarta.servlet.http.HttpServletResponse)
with the status code and reason from the exception.- Parameters:
ex
- the exceptionrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler, ornull
if none chosen at the time of the exception, e.g. if multipart resolution failed- Returns:
- an empty ModelAndView, i.e. exception resolved
- Throws:
Exception
- Since:
- 5.0
-
applyStatusAndReason
protected ModelAndView applyStatusAndReason(int statusCode, @Nullable String reason, HttpServletResponse response) throws IOException Apply the resolved status code and reason to the response.The default implementation sends a response error using
HttpServletResponse.sendError(int)
orHttpServletResponse.sendError(int, String)
if there is a reason and then returns an empty ModelAndView.- Parameters:
statusCode
- the HTTP status codereason
- the associated reason (may benull
or empty)response
- current HTTP response- Throws:
IOException
- Since:
- 5.0
-