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页面上显示“系统正在维护”。