首页 > 代码库 > SpringMVC 异常处理

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 异常处理