public class DefaultErrorViewResolver extends Object implements ErrorViewResolver, Ordered
ErrorViewResolver
implementation that attempts to resolve error views
using well known conventions. Will search for templates and static assets under
'/error'
using the status code
and the
status series
.
For example, an HTTP 404
will search (in the specific order):
'/<templates>/error/404.<ext>'
'/<static>/error/404.html'
'/<templates>/error/4xx.<ext>'
'/<static>/error/4xx.html'
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor and Description |
---|
DefaultErrorViewResolver(ApplicationContext applicationContext,
ResourceProperties resourceProperties)
Create a new
DefaultErrorViewResolver instance. |
Modifier and Type | Method and Description |
---|---|
int |
getOrder() |
ModelAndView |
resolveErrorView(HttpServletRequest request,
HttpStatus status,
Map<String,Object> model)
Resolve an error view for the specified details.
|
void |
setOrder(int order) |
public DefaultErrorViewResolver(ApplicationContext applicationContext, ResourceProperties resourceProperties)
DefaultErrorViewResolver
instance.applicationContext
- the source application contextresourceProperties
- resource propertiespublic ModelAndView resolveErrorView(HttpServletRequest request, HttpStatus status, Map<String,Object> model)
ErrorViewResolver
resolveErrorView
in interface ErrorViewResolver
request
- the source requeststatus
- the http status of the errormodel
- the suggested model to be used with the viewModelAndView
or null
public void setOrder(int order)
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.