2018-07-30 08:57
全局异常拦截器,你可以配置多个catch,但是Exception放在最后一个catch中,例如: try {
inv.invoke();
} catch (ActiveRecordException e) {
e.printStackTrace();
inv.getController().renderJson(ResultUtils.error("数据库操作失败,请联系管理员"));
} catch (cn.hutool.core.date.DateException e) {
e.printStackTrace();
inv.getController().renderJson(ResultUtils.error("指定日期格式不正确"));
} catch (Exception e) {
e.printStackTrace();
inv.getController().renderJson(ResultUtils.error("其他异常信息"));
}