public class SimpleMappingExceptionResolver extends AbstractHandlerExceptionResolver
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 DispatcherPortlet.
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.
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_EXCEPTION_ATTRIBUTE
The default name of the exception attribute: "exception".
|
logger
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor and Description |
---|
SimpleMappingExceptionResolver() |
Modifier and Type | Method and Description |
---|---|
protected String |
determineViewName(Exception ex,
PortletRequest request)
Determine the view name for the given exception, searching the
"exceptionMappings" , using the
"defaultErrorView" as fallback. |
protected ModelAndView |
doResolveException(PortletRequest request,
MimeResponse 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 String |
findMatchingViewName(Properties exceptionMappings,
Exception ex)
Find a matching view name in the given exception mappings
|
protected int |
getDepth(String exceptionMapping,
Exception ex)
Return the depth to the superclass matching.
|
protected ModelAndView |
getModelAndView(String viewName,
Exception ex)
Return a ModelAndView for the given view name and exception.
|
protected ModelAndView |
getModelAndView(String viewName,
Exception ex,
PortletRequest request)
Return a ModelAndView for the given request, view name and exception.
|
void |
setDefaultErrorView(String defaultErrorView)
Set the name of the default error view.
|
void |
setExceptionAttribute(String exceptionAttribute)
Set the name of the model attribute as which the exception should
be exposed.
|
void |
setExceptionMappings(Properties mappings)
Set the mappings between exception class names and error view names.
|
buildLogMessage, getOrder, logException, resolveException, resolveException, setMappedHandlerClasses, setMappedHandlers, setOrder, setRenderWhenMinimized, setWarnLogCategory, shouldApplyTo
public static final String DEFAULT_EXCEPTION_ATTRIBUTE
public void setExceptionMappings(Properties mappings)
javax.portet.PortletException
and 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.
Follows the same matching algorithm as RuleBasedTransactionAttribute and RollbackRuleAttribute.
mappings
- exception patterns (can also be fully qualified class names)
as keys, and error view names as valuesRuleBasedTransactionAttribute
,
RollbackRuleAttribute
public void setDefaultErrorView(String defaultErrorView)
Default is none.
public void setExceptionAttribute(String exceptionAttribute)
DEFAULT_EXCEPTION_ATTRIBUTE
protected ModelAndView doResolveException(PortletRequest request, MimeResponse response, Object handler, Exception ex)
doResolveException
in class AbstractHandlerExceptionResolver
request
- current portlet requestresponse
- current portlet 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 executionprotected String determineViewName(Exception ex, PortletRequest request)
"exceptionMappings"
, using the
"defaultErrorView"
as fallback.ex
- the exception that got thrown during handler executionrequest
- current portlet request (useful for obtaining metadata)null
if none foundprotected String findMatchingViewName(Properties exceptionMappings, Exception ex)
exceptionMappings
- mappings between exception class names and error view namesex
- the exception that got thrown during handler executionnull
if none foundsetExceptionMappings(java.util.Properties)
protected int getDepth(String exceptionMapping, Exception ex)
0 means ex matches exactly. Returns -1 if there's no match. Otherwise, returns depth. Lowest depth wins.
Follows the same algorithm as
RollbackRuleAttribute
.
protected ModelAndView getModelAndView(String viewName, Exception ex, PortletRequest request)
getModelAndView(viewName, ex)
.viewName
- the name of the error viewex
- the exception that got thrown during handler executionrequest
- current portlet request (useful for obtaining metadata)getModelAndView(String, Exception)
protected ModelAndView getModelAndView(String viewName, Exception ex)
viewName
- the name of the error viewex
- the exception that got thrown during handler executionsetExceptionAttribute(java.lang.String)