|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver
public class DefaultHandlerExceptionResolver
Default implementation of the HandlerExceptionResolver
interface that resolves standard Spring exceptions and translates
them to corresponding HTTP status codes.
This exception resolver is enabled by default in the DispatcherServlet
.
handleNoSuchRequestHandlingMethod(org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMethodException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleHttpRequestMethodNotSupported(org.springframework.web.HttpRequestMethodNotSupportedException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleHttpMediaTypeNotSupported(org.springframework.web.HttpMediaTypeNotSupportedException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleMissingServletRequestParameter(org.springframework.web.bind.MissingServletRequestParameterException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleServletRequestBindingException(org.springframework.web.bind.ServletRequestBindingException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleTypeMismatch(org.springframework.beans.TypeMismatchException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleHttpMessageNotReadable(org.springframework.http.converter.HttpMessageNotReadableException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleHttpMessageNotWritable(org.springframework.http.converter.HttpMessageNotWritableException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
,
handleMethodArgumentNotValidException(org.springframework.web.bind.MethodArgumentNotValidException, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object)
Field Summary | |
---|---|
static String |
PAGE_NOT_FOUND_LOG_CATEGORY
Log category to use when no mapped handler is found for a request. |
protected static Log |
pageNotFoundLogger
Additional logger to use when no mapped handler is found for a request. |
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 | |
---|---|
DefaultHandlerExceptionResolver()
Sets the order to Ordered.LOWEST_PRECEDENCE . |
Method Summary | |
---|---|
protected ModelAndView |
doResolveException(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 ModelAndView |
handleConversionNotSupported(ConversionNotSupportedException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case when a WebDataBinder conversion cannot occur. |
protected ModelAndView |
handleHttpMediaTypeNotAcceptable(HttpMediaTypeNotAcceptableException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where no message converters were found that were acceptable for the client (expressed via the Accept header. |
protected ModelAndView |
handleHttpMediaTypeNotSupported(HttpMediaTypeNotSupportedException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where no message converters were found for the PUT or POSTed content. |
protected ModelAndView |
handleHttpMessageNotReadable(HttpMessageNotReadableException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where a message converter cannot read from a HTTP request. |
protected ModelAndView |
handleHttpMessageNotWritable(HttpMessageNotWritableException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where a message converter cannot write to a HTTP request. |
protected ModelAndView |
handleHttpRequestMethodNotSupported(HttpRequestMethodNotSupportedException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where no request handler method was found for the particular HTTP request method. |
protected ModelAndView |
handleMethodArgumentNotValidException(MethodArgumentNotValidException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where an argument annotated with @Valid such as
an RequestBody or RequestPart argument fails validation. |
protected ModelAndView |
handleMissingServletRequestParameter(MissingServletRequestParameterException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case when a required parameter is missing. |
protected ModelAndView |
handleMissingServletRequestPartException(MissingServletRequestPartException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where an @ RequestPart , a MultipartFile ,
or a javax.servlet.http.Part argument is required but missing. |
protected ModelAndView |
handleNoSuchRequestHandlingMethod(NoSuchRequestHandlingMethodException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where no request handler method was found. |
protected ModelAndView |
handleServletRequestBindingException(ServletRequestBindingException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case when an unrecoverable binding exception occurs - e.g. |
protected ModelAndView |
handleTypeMismatch(TypeMismatchException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case when a WebDataBinder conversion error occurs. |
Methods inherited from class org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver |
---|
buildLogMessage, getOrder, logException, prepareResponse, preventCaching, resolveException, setMappedHandlerClasses, setMappedHandlers, setOrder, setPreventResponseCaching, setWarnLogCategory, shouldApplyTo |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String PAGE_NOT_FOUND_LOG_CATEGORY
pageNotFoundLogger
,
Constant Field Valuesprotected static final Log pageNotFoundLogger
PAGE_NOT_FOUND_LOG_CATEGORY
Constructor Detail |
---|
public DefaultHandlerExceptionResolver()
Ordered.LOWEST_PRECEDENCE
.
Method Detail |
---|
protected ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
AbstractHandlerExceptionResolver
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.
doResolveException
in class AbstractHandlerExceptionResolver
request
- current HTTP requestresponse
- current HTTP responsehandler
- 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
null
for default processingprotected ModelAndView handleNoSuchRequestHandlingMethod(NoSuchRequestHandlingMethodException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation logs a warning, sends an HTTP 404 error, and returns
an empty ModelAndView
. Alternatively, a fallback view could be chosen,
or the NoSuchRequestHandlingMethodException could be rethrown as-is.
ex
- the NoSuchRequestHandlingMethodException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler, or null
if none chosen
at the time of the exception (for example, if multipart resolution failed)
IOException
- potentially thrown from response.sendError()protected ModelAndView handleHttpRequestMethodNotSupported(HttpRequestMethodNotSupportedException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation logs a warning, sends an HTTP 405 error, sets the "Allow" header,
and returns an empty ModelAndView
. Alternatively, a fallback view could be chosen,
or the HttpRequestMethodNotSupportedException could be rethrown as-is.
ex
- the HttpRequestMethodNotSupportedException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler, or null
if none chosen
at the time of the exception (for example, if multipart resolution failed)
IOException
- potentially thrown from response.sendError()protected ModelAndView handleHttpMediaTypeNotSupported(HttpMediaTypeNotSupportedException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation sends an HTTP 415 error,
sets the "Accept" header, and returns an empty ModelAndView
. Alternatively, a fallback
view could be chosen, or the HttpMediaTypeNotSupportedException could be rethrown as-is.
ex
- the HttpMediaTypeNotSupportedException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleHttpMediaTypeNotAcceptable(HttpMediaTypeNotAcceptableException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
Accept
header.
The default implementation sends an HTTP 406 error and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the HttpMediaTypeNotAcceptableException
could be rethrown as-is.
ex
- the HttpMediaTypeNotAcceptableException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleMissingServletRequestParameter(MissingServletRequestParameterException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation sends an HTTP 400 error, and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the MissingServletRequestParameterException
could be rethrown as-is.
ex
- the MissingServletRequestParameterException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleServletRequestBindingException(ServletRequestBindingException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation sends an HTTP 400 error, and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the exception could be rethrown as-is.
ex
- the exception to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleConversionNotSupported(ConversionNotSupportedException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
WebDataBinder
conversion cannot occur.
The default implementation sends an HTTP 500 error, and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the TypeMismatchException could be rethrown as-is.
ex
- the ConversionNotSupportedException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleTypeMismatch(TypeMismatchException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
WebDataBinder
conversion error occurs.
The default implementation sends an HTTP 400 error, and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the TypeMismatchException could be rethrown as-is.
ex
- the TypeMismatchException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleHttpMessageNotReadable(HttpMessageNotReadableException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation sends an HTTP 400 error, and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the HttpMediaTypeNotSupportedException could be
rethrown as-is.
ex
- the HttpMessageNotReadableException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleHttpMessageNotWritable(HttpMessageNotWritableException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
The default implementation sends an HTTP 500 error, and returns an empty ModelAndView
.
Alternatively, a fallback view could be chosen, or the HttpMediaTypeNotSupportedException could be
rethrown as-is.
ex
- the HttpMessageNotWritableException to be handledrequest
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleMethodArgumentNotValidException(MethodArgumentNotValidException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
@Valid
such as
an RequestBody
or RequestPart
argument fails validation.
An HTTP 400 error is sent back to the client.
request
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()protected ModelAndView handleMissingServletRequestPartException(MissingServletRequestPartException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException
RequestPart
, a MultipartFile
,
or a javax.servlet.http.Part
argument is required but missing.
An HTTP 400 error is sent back to the client.
request
- current HTTP requestresponse
- current HTTP responsehandler
- the executed handler
IOException
- potentially thrown from response.sendError()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |