SpringMVC中的异常处理

一、编写自定义异常类(作为提示信息)

  @Data
  public class SysException extends Exception {
  private String message;
  public SysException(String message) {
    this.message = message;
      }
 }

二、编写异常处理器

public class SysExceptionResolve implements HandlerExceptionResolver {
@Override
public ModelAndView resolveException(HttpServletRequest httpServletRequest,
                                     HttpServletResponse httpServletResponse,
                                     Object o,
                                     Exception e) {
    //处理异常业务逻辑
    SysException sys = null;
    if(e instanceof SysException){
        sys = (SysException) e;
    }else{
        //如果抛出的不是系统自定义异常则重新构造一个系统错误异常。
        sys = new SysException("系统自定义异常....");
    }
    //携带异常信息跳转到提示页面
    ModelAndView mv = new ModelAndView();
    mv.addObject("errorMsg",sys.getMessage());
    mv.setViewName("error");
    return mv;
    }
  }

三、在springmvc.xml中配置异常处理器(跳转到提示页面)

posted @ 2020-07-12 22:18  jock_javaEE  阅读(94)  评论(0编辑  收藏  举报