SpringMVC 异常处理
Posted 不想想太多 - Faded
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC 异常处理相关的知识,希望对你有一定的参考价值。
方式一
@ExceptionHandler(RuntimeException.class) public String runtimeExceptionHandler(RuntimeException ex){ System.out.println("exception Handler"); return "redirect:error.jsp"; }
方式二
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <property name="exceptionMappings"> <props> <prop key="java.lang.RuntimeException">redirect:error.jsp</prop> </props> </property> </bean>
以上是关于SpringMVC 异常处理的主要内容,如果未能解决你的问题,请参考以下文章
springmvc 全局异常ControllerAdviceExceptionHandler