xml spring mvc异常解析器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml spring mvc异常解析器相关的知识,希望对你有一定的参考价值。
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="defaultErrorView" value="/errors/error.jsp"></property>
<!-- save exception to -->
<property name="exceptionAttribute" value="ex"></property>
<property name="exceptionMappings">
<props>
<prop key="java.lang.NullPointerException">/errors/null.jsp</prop>
</props>
</property>
</bean>
以上是关于xml spring mvc异常解析器的主要内容,如果未能解决你的问题,请参考以下文章
Spring MVC 详解
Spring MVC
Spring MVC
Spring MVC异常处理
SpringMVC -- SpringMVC的XML配置解析(资源解析器 详细解析 转发/重定向)
spring mvc中的多个视图解析器