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

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

/** * 自定义异常类 * @author ky01 * */@SuppressWarnings("serial")public class ServiceException extends RuntimeException {    private Integer code;    public ServiceException(ErrorCode exceptionEnum) {        super(exceptionEnum.getMsg());        this.code = exceptionEnum.getCode();    }    public ServiceException(Integer code, String msg) {        super(msg);        this.code = code;    }    public Integer getCode() {        return code;    }    public void setCode(Integer code) {        this.code = code;    }}
/** * 统一异常处理类 * @author ky01 * */@ControllerAdvicepublic class ExceptionHandler {    private static final Logger log = LoggerFactory.getLogger(ExceptionHandler.class);        @org.springframework.web.bind.annotation.ExceptionHandler(value = Exception.class)    @ResponseBody    public String exceptionGet(Throwable e){        if(e instanceof ServiceException){            ServiceException myException = (ServiceException)e;            return Result.error(myException.getCode(), myException.getMessage()).toJson();        }                if(e instanceof ValidationException){            ValidationException myException = (ValidationException)e;            return Result.error(ErrorCode.PARAM_INVALID.getCode(), myException.getMessage()).toJson();        }                //RuntimeException统一提示“未知错误”        log.error("【系统异常】", e);        return Result.error(ErrorCode.UNKNOWN_ERROR).toJson();    }    }

使用:在Controller中抛出Exception时都会被ExceptionHandler捕获到并转为相应的字符串返回。

转载于:https://www.cnblogs.com/kong90hou/p/9229700.html

你可能感兴趣的文章
Decentralized Applications
查看>>
哪种语言的密码更容易破解?
查看>>
如何将MFC程序改为UNICODE类型
查看>>
Open***应用案例
查看>>
php代码规范
查看>>
在分片集群中追踪MongoDB的操作日志
查看>>
判断DataTable为空
查看>>
vs中调用WebService
查看>>
Spring Boot 系统要求
查看>>
【CentOS 7笔记35】,几个特殊符号和一些常用命令#171117
查看>>
五款免费的磁盘空间使用情况报告软件
查看>>
JAVA线程7 - 终止线程
查看>>
网卡绑定(服务器&&交换机),缓存服务器Squid架构配置
查看>>
linux下CPU、内存、IO、网络的压力测试,硬盘读写速度测试,Linux三个系统资源监控工具...
查看>>
Linux的lvm逻辑卷管理
查看>>
web网站加速之CDN(Content Delivery Network)技术原理
查看>>
Redis 数据结构-字符串源码分析
查看>>
关于linux load average的深入了解
查看>>
RRDtool监控绘图调研(优化版)
查看>>
时间区间选择插件daterangepicker
查看>>