码迷,mamicode.com
首页 > 编程语言 > 详细

springMVC系统异常处理及自定异常处理

时间:2016-11-19 20:39:45      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:sim   images   end   ring   property   png   str   exce   sage   

配置系统异常处理器

1.后台模拟一个异常

@RequestMapping(value = "/myexception.do", produces = "text/html;charset=utf-8")
    public String myexception() {
        int a=5/0;
        return "/error.jsp";
    }

2.未配置系统异常时,前台访问报错500,配置系统异常处理器后成功进入错误页面

<bean
        class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="defaultErrorView" value="error.jsp"></property>
        <property name="exceptionAttribute" value="ex"></property>
    </bean>

3.前台页面

 错误页面${ex.message}

效果图:

技术分享

配置自定义异常处理器

1.创建自定义异常类

public class MyException extends Exception{

    public MyException() {
        super();
    }

    public MyException(String message) {
        super(message);
    }

}
public class NameException extends MyException {

    public NameException() {
        super();
    }

    public NameException(String message) {
        super(message);
    }

}
public class AgeException extends MyException {

    public AgeException() {
        super();
    }

    public AgeException(String message) {
        super(message);
    }

}

2.配置处理器方法

@RequestMapping(value = "/exception.do", produces = "text/html;charset=utf-8")
    public String exception(String name, Integer age) throws NameException, AgeException {
        if (!name.equals("admin")) {
            throw new NameException("用户名错误");
        }
        if (age > 40) {
            throw new AgeException("年龄太大");
        }
        return "/result.jsp";
    }

3.配置applicationContext.xml

<!-- 注册系统异常处理器 -->
    <bean
        class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="defaultErrorView" value="error.jsp"></property>
        <property name="exceptionAttribute" value="ex"/>
        <!-- 自定义异常处理 -->
        <property name="exceptionMappings">
            <props>
                <prop key="cn.cnsdhzzl.exception.NameException">/customError/userNameError.jsp</prop>
                <prop key="cn.cnsdhzzl.exception.AgeException">/customError/userAgeeError.jsp</prop>
            </props>
        </property>
    </bean>

配置完成,再出现异常时就对进入对应的错误页面

 

springMVC系统异常处理及自定异常处理

标签:sim   images   end   ring   property   png   str   exce   sage   

原文地址:http://www.cnblogs.com/cnsdhzzl/p/6081239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!