SpringMvc的异常处理

1.创建项目配好环境
2.写一个Exception包下的错误类,继承父类Exception。

public class Sysexception extends Exception
{
    private String msg;

    public Sysexception(String msg)
    {
        this.msg = msg;
    }

    public String getMsg()
    {
        return msg;
    }

    public void setMsg(String msg)
    {
        this.msg = msg;
    }
}

3.模拟一个错误的发生,在catch中要抛出自己的错误类

	@RequestMapping("/testException")
    public String testException() throws Exception
    {
        System.out.println("testException");
        try
        {
            int i=108/0;
        }
        catch (Exception e)
        {
            e.printStackTrace();
            throw new Sysexception("自定义的错误");
            //throw new NullPointerException();
        }
        return "success";
    }

4.已经抛出了自定义的异常,还要写一个异常处理器去处理它,使跳转的网页上显示对用户较友好的信息。该类需继承父类 HandlerExceptionResolver,且注意要把这个处理器类加入Spring容器,才能在抛出异常时经过这个处理器。
5.创建ModelAndView对象,用addObject()往其中存入错误信息,并用setViewName()转到错误页面的jsp上。

@Component
public class SysexceptionResolver implements HandlerExceptionResolver
{
    @Override
    public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
    {
        Sysexception e=null;

        if(ex instanceof Sysexception)
        {
            e=(Sysexception)ex;
        }else
        {
            e = new Sysexception("系统正在维护");
        }

        ModelAndView mv=new ModelAndView();
        mv.addObject("errmsg",e.getMsg());
        mv.setViewName("error");
        return mv;
    }
}

6.经测试,当抛出throw new Sysexception("自定义的错误");时,error页面上显示“自定义错误”;当抛出throw new NullPointerException();时,error页面上显示“系统正在维护”。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值