- 概述
不同框架抛出的异常格式是不一致的,有Json、XML、HTML等;更重要的是响应的数据结构会和约定的数据结构不一致,因此我们需要进行全局的异常处理,目的是防止出现约定之外的数据结构,同时可以进行自定义的异常页面展示。
- Springboot默认的异常处理机制
默认情况下,Springboot会返回两种类型的异常,一种是HTML,另一种是Json类型,这主要取决于请求头中的Accept参数,比如浏览器中发出的请求,请求头中都会附带Accept:text/html
,此时Springboot返回的是默认错误页面,也是我们熟悉的“Whitelabel Error Page”;而当我们使用Postman进行请求时,返回的则是Json数据。
原理如下:
Springboot提供了程序出错的默认结果路径"/error",这个"/error"请求会由BasicErrorController进行处理,其内部通过判断是否附带Accept:text/html
决定要调用的方法,相关源码如下:
@Controller
@RequestMapping({
"${server.error.path:${error.path:/error}}"})
public class BasicErrorController extends AbstractErrorController {
......
@RequestMapping(
produces = {
"text/html"}
)// 对应HTML类型
public ModelAndView errorHtml(HttpServletRequest request, HttpServletResponse response) {
HttpStatus status = this.getStatus(request);
Map<String, Object> model = Collections.unmodifiableMap(this.getErrorAttributes(request, this.isIncludeStackTrace(request, MediaType.TEXT_HTML)));
response.setStatus(status.value());
ModelAndView modelAndView = this.resolveErrorView(request, response, status, model);