博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 统一异常处理
阅读量:6070 次
发布时间:2019-06-20

本文共 1985 字,大约阅读时间需要 6 分钟。

hot3.png

1. 自己定义的异常,继承RuntimeException。可以建个exception包,专门放自定义异常。自定义的异常用来描述自己程序中特有的异常。

 

public class CustomGenericException extends RuntimeException {    private String errCode;    private String errMsg;    public CustomGenericException(String errCode, String errMsg) {        this.errCode = errCode;        this.errMsg = errMsg;    }    public String getErrCode() {        return errCode;    }    public void setErrCode(String errCode) {        this.errCode = errCode;    }    public String getErrMsg() {        return errMsg;    }    public void setErrMsg(String errMsg) {        this.errMsg = errMsg;    }}

2. 定义一个专用做处理异常的类,如下, @ExceptionHandler()括号中的异常类.class表示这个方法用来处理哪种异常。

@ControllerAdvice(annotations = Controller.class)public class GlobalExceptionController {    @ExceptionHandler(CustomGenericException.class)    public ModelAndView handleCustomerException(CustomGenericException ex) {        ModelAndView model = new ModelAndView("error/generic_error");        model.addObject("errCode", ex.getErrCode());        model.addObject("errMsg", ex.getErrMsg());        return model;    }    @ExceptionHandler(Exception.class)    public ModelAndView handleAllException(Exception ex) {        ModelAndView model = new ModelAndView("error/generic_error");        model.addObject("errMsg", "this is Exception.class");        return model;    }}

3. 程序中只管抛异常就可以, 可以抛自定义的异常,或其他异常,异常处理类中对应的异常处理办法会起作用。 

@Controllerpublic class MainController {    @RequestMapping(value = "/{type}", method = RequestMethod.GET)    public ModelAndView getPages(@PathVariable("type") String type) throws IOException {        if("error".equals(type)) {            throw new CustomGenericException("E888", "This is custom message");        } else if("io-error".equals(type)) {            throw new IOException();        } else {            return new ModelAndView("index").addObject("msg", type);        }    }

4. spring配置文件中要能扫到这些bean, 并且加上<mvc:annotation-driven/>

 

转载于:https://my.oschina.net/u/1867229/blog/1498928

你可能感兴趣的文章
Web实时通信技术
查看>>
第三章 计算机及服务器硬件组成结合企业运维场景 总结
查看>>
IntelliJ IDEA解决Tomcal启动报错
查看>>
默认虚拟主机设置
查看>>
七周五次课(1月26日)
查看>>
Linux系统一些系统查看指令
查看>>
php中的短标签 太坑人了
查看>>
[译] 可维护的 ETL:使管道更容易支持和扩展的技巧
查看>>
### 继承 ###
查看>>
数组扩展方法之求和
查看>>
astah-professional-7_2_0安装
查看>>
函数是对象-有属性有方法
查看>>
uva 10107 - What is the Median?
查看>>
Linux下基本栈溢出攻击【转】
查看>>
c# 连等算式都在做什么
查看>>
使用c:forEach 控制5个换行
查看>>
java web轻量级开发面试教程摘录,java web面试技巧汇总,如何准备Spring MVC方面的面试...
查看>>
根据调试工具看Vue源码之组件通信(一)
查看>>
Thrift RPC 系列教程(5)—— 接口设计篇:struct & enum设计
查看>>
斯坦福-随机图模型-week1.5
查看>>