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

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

SpringBoot 统一异常处理

SpringBoot 统一异常处理
异常和响应码

因为用RESTful设计的接口, 应该用状态码反映请求的错误, 不应该统一返回200 的状态码, 然后再通过 msg 来描述错误. 所以统一异常处理比较关键.

异常一般分为 业务异常 和 非业务异常

SpringBoot 统一异常处理
业务异常通常返回4xx的状态码
非业务异常只需要返回 500 , 提示 服务器错误,请稍候重试
默认异常处理
SpringBoot 提供了默认的处理异常方式,当出现异常时就会默认映射到 /error。处理异常的程序在类BasicErrorController 中.
该类提供了两种异常处理的方法 :

方法 errorHtml 用于处理浏览器端请求时出现的异常.

方法 error 用于处理机器客户端请求时出现的异常。

这两种请求的的区别在于请求头中 Accept 的值 :

值为 text/html 时,方法 errorHtml 执行,返回 HTML 页面。

值为 application/json 时,方法 error 执行,返回 json 数据。

errorHtml 和 error 两个方法的源代码

@RequestMapping(produces = "text/html")

public ModelAndView errorHtml(HttpServletRequest request,
HttpServletResponse response) {
HttpStatus status = getStatus(request);
Map<String, Object> model = Collections.unmodifiableMap(getErrorAttributes(
request, isIncludeStackTrace(request, MediaType.TEXT_HTML)));
response.setStatus(status.value());
ModelAndView modelAndView = resolveErrorView(request, response, status, model);
return (modelAndView != null) ? modelAndView : new ModelAndView("error", model);
}

@RequestMapping@ResponseBodypublic ResponseEntity<Map<String, Object>> error(HttpServletRequest request) {    Map<String, Object> body = getErrorAttributes(request,            isIncludeStackTrace(request, MediaType.ALL));    HttpStatus status = getStatus(request);    return new ResponseEntity<>(body, status);}

浏览器端错误页面

SpringBoot 统一异常处理

如果想自定义页面替换这个页面, 你只需在 /error 文件夹下添加一个表示错误页面的文件。该文件可以是一个静态的HTML,也可以使用模板。这个文件的名字应该是精确的状态码或者是表示一个系列的模糊名称。如下:

src/

+- main/
+- java/
| + <source code>
+- resources/
+- public/
+- error/
| +- 404.html
+- <other public assets>

src/

+- main/
+- java/
| + <source code>
+- resources/
+- templates/
+- error/
| +- 5xx.ftl
+- <other templates>

其背后的原理在于上面提到的 errorHtml 方法。当出现异常时,该方法会查询是否有在 error 文件夹下提供对应错误状态码的静态资源文件,如果有则返回该文件,没有则返回上小节讲到的白色错误标签页。如果想要知道更详细的细节请查看相关源码。

JSON格式错误
当请求头中的Accept的值为 application/json 时,就会返回 json 数据了。出现异常时,BasicErrorController 类中的 error 方法将被执行。会获取错误信息然后以 Json 格式返回。如下图:

SpringBoot 统一异常处理

自定义异常处理

下面有两种方式自定义异常处理

对于应用级别的业务异常处理,我们可以通过注解 @ControllerAdvice 或 @RestControllerAdvice 来实现异常处理。但是上面的注解只能捕获处理应用级别的异常,例如 Controller 中抛出自定义的异常。却不能处理容器级别的异常,例如 Filter 中抛出的异常等。

要想处理容器级别的异常,需要继承 BasicErrorController 类,重写 errorHtml 和 error 方法。或者实现 ErrorController 接口,起到和类 BasicErrorController 相似的作用。

处理应用级别异常

下面是返回 JSON 格式的处理类

private static final long serialVersionUID = 1L;@ExceptionHandler(value = MissingServletRequestParameterException.class)@ResponseStatus(HttpStatus.BAD_REQUEST)public R defaultErrorHandler(HttpServletRequest req, Exception e) throws Exception {    return new R<>(null, "缺少参数");}

}

@RestControllerAdvice 与 @ControllerAdvice +@ResponseBody 起到的作用是一样的

注解 @ExceptionHandler 里面的 value 的类是我们捕获的处理异常, 此类异常会被defaultErrorHandler 方法处理.

@ResponseStatus(HttpStatus.BAD_REQUEST) 注解, 指定了此异常返回的状态码, 因为是缺少参数, 所以返回 400 的状态码

R 类为一个 ResultJSON 类, 把内容封装起来, 一般有 code, meg , data 三个属性. 返回一个 JSON 字符串

处理容器级别的异常
@ControllerAdvice 注解的异常处理类并不能处理容器级别的异常, 我们可以通过继承 BasicErrorController 类重写 errorHtml 或 error 方法,以达到我们想要的返回结果。

还可以通过实现 ErrorController 接口的方法来实现自定义异常处理,BasicErrorController 类也是实现了 ErrorController 接口,因此这种方式和 BasicErrorController 类有相似作用。实现起来相对麻烦,本文只讲解继承 BasicErrorController 类的方式。

@Controller

public class CustomizeErrorController extends BasicErrorController{

public CustomizeErrorController(ErrorAttributes errorAttributes, ErrorProperties errorProperties, List
errorViewResolvers){ super(errorAttributes, errorProperties, errorViewResolvers);}@RequestMapping(produces = {"text/html"})public ModelAndView errorHtml(HttpServletRequest request, HttpServletResponse response) { HttpStatus status = this.getStatus(request); Map
model = Collections.unmodifiableMap(this.getErrorAttributes(request, this.isIncludeStackTrace(request, MediaType.TEXT_HTML))); response.setStatus(status.value()); ModelAndView modelAndView = this.resolveErrorView(request, response, status, model); return modelAndView == null ? new ModelAndView("error", model) : modelAndView;}@RequestMapping@ResponseBodypublic ResponseEntity
> error(HttpServletRequest request) { Map
body = this.getErrorAttributes(request, this.isIncludeStackTrace(request, MediaType.ALL)); HttpStatus status = this.getStatus(request); ApiResponseBody responseBody = new ApiResponseBody((int)body.get("status"), (String) body.get("error") + ": " + (String) body.get("message")); return new ResponseEntity(responseBody, status);}

}

该类将会覆盖 BasicErrorController 类起到处理异常的作用。但这里要注意,如果想要保留对SpringBoot默认的对浏览器请求的异常处理(也就是根据异常错误状态码返回 error 文件夹下对应的错误页面),还需新建一个配置文件 CustomErrorConfiguration

@Configuration

public CustomErrorConfiguration(ServerProperties serverProperties, ObjectProvider<List<ErrorViewResolver>> errorViewResolversProvider) {    this.serverProperties = serverProperties;    this.errorViewResolvers = (List)errorViewResolversProvider.getIfAvailable();}@Beanpublic CustomizeErrorController customizeErrorController(ErrorAttributes errorAttributes){    return new CustomizeErrorController(errorAttributes, this.serverProperties.getError(),errorViewResolvers);}

}

转载于:https://blog.51cto.com/14262994/2375927

你可能感兴趣的文章
SqlServer2008 R2数据库主从搭建
查看>>
一个程序猿试用有道云笔记VIP功能体验
查看>>
简单对接快递100
查看>>
Etherscan以太坊API官方文档中文版
查看>>
wamp 无法打开localhost:The requested URL / was not...
查看>>
ERC827以太坊通证标准
查看>>
PropertyPlaceholderConfigurer ---Spring管理配置文件
查看>>
初学Python:写码时应该缩进使用 tab 还是空格?
查看>>
10.15 iptables filter表案例, iptables nat表应用
查看>>
java B2B2C Springboot电子商城系统-路由网关(zuul)
查看>>
重磅课程|《CNCF x Alibaba 云原生技术公开课》正式开讲!
查看>>
java反射+注解实现Entity类与Dto类相互转换
查看>>
LVM讲解和磁盘故障小案例
查看>>
年后跳槽怕面试不过关?搞懂并发编程,轻松应对80%的面试场景
查看>>
Spring Cloud 终于按捺不住推出了自己的服务网关 Gateway
查看>>
【更新】Infragistics Ultimate UI for WPF v18.2(二):分类图
查看>>
交易比特币的三种方式和购买数字资产的利弊
查看>>
干货 | 京东云部署Wordpress最佳实践
查看>>
nodejs 请求自动超时
查看>>
Spring Boot开发WEB页面
查看>>