Spring Boot错误机制
1、错误处理机制
1.1 SpringBoot默认的错误处理机制
默认效果:
- 浏览器,返回一个默认的错误页面
浏览器发送请求的请求头:
- 如果是其他客户端,默认响应一个json数据
客户端的请求头:
1.2 原理:
可以参照
ErrorMvcAutoConfiguration
;错误处理的自动配置;查看这个类的源码这个配置类给容器中添加了以下组件:
DefaultErrorAttributes
:
1
2
3
4
5
6
7
8
9
10
11
12// 帮我们在页面共享信息
public Map<String, Object> getErrorAttributes(RequestAttributes requestAttributes,
boolean includeStackTrace) {
Map<String, Object> errorAttributes = new LinkedHashMap<String, Object>();
errorAttributes.put("timestamp", new Date());
addStatus(errorAttributes, requestAttributes);
addErrorDetails(errorAttributes, requestAttributes, includeStackTrace);
addPath(errorAttributes, requestAttributes);
return errorAttributes;
}
BasicErrorController
:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"${server.error.path:${error.path:/error}}") (
public class BasicErrorController extends AbstractErrorController {
...
// 产生html类型的数据;浏览器发送的请求来到这个方法处理
"text/html") (produces =
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 ? new ModelAndView("error", model) : modelAndView);
}
// 产生json数据,其他客户端来到这个方法处理
public ResponseEntity<Map<String, Object>> error(HttpServletRequest request) {
Map<String, Object> body = getErrorAttributes(request,
isIncludeStackTrace(request, MediaType.ALL));
HttpStatus status = getStatus(request);
return new ResponseEntity<Map<String, Object>>(body, status);
}
...
}
ErrorPageCustomizer
:1
2
3
4
5public class ErrorProperties {
"${error.path:/error}") (
private String path = "/error";
...
}
DefaultErrorViewResolver
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public ModelAndView resolveErrorView(HttpServletRequest request, HttpStatus status,
Map<String, Object> model) {
ModelAndView modelAndView = resolve(String.valueOf(status), model);
if (modelAndView == null && SERIES_VIEWS.containsKey(status.series())) {
modelAndView = resolve(SERIES_VIEWS.get(status.series()), model);
}
return modelAndView;
}
private ModelAndView resolve(String viewName, Map<String, Object> model) {
//默认SpringBoot可以去找到一个页面? error/404
String errorViewName = "error/" + viewName;
//模板引擎可以解析这个页面地址就用模板引擎解析
TemplateAvailabilityProvider provider =
this.templateAvailabilityProviders.getProvider(errorViewName, this.applicationContext);
if (provider != null) {
//模板引擎可用的情况下返回到errorViewName指定的视图地址
return new ModelAndView(errorViewName, model);
}
//模板引擎不可用,就在静态资源文件夹下找errorViewName对应的页面 error/404.html
return resolveResource(errorViewName, model);
}
1.3 步骤
一但系统出现4xx或者5xx之类的错误;ErrorPageCustomizer就会生效(定制错误的响应规则);就会来到/error请求;就会被BasicErrorController处理;
- 响应页面;去哪个页面是由DefaultErrorViewResolver解析得到的
1 | protected ModelAndView resolveErrorView( |
2、如何定制错误响应:
2.1 如何定制错误的页面
- 有模板引擎的情况下;
error/状态码; 将错误页面命名为错误状态码.html
放在模板引擎文件夹里面的error文件夹下,发生此状态码的错误就会来到 对应的页面;
我们可以使用4xx和5xx作为错误页面的文件名来匹配这种类型的所有错误,精确优先(优先寻找精确的状态码.html);
页面能获取的信息;
1 | timestamp:时间戳 |
- 没有模板引擎(模板引擎找不到这个错误页面),静态资源文件夹下找;
- 以上都没有错误页面,就是默认来到SpringBoot默认的错误提示页面
2.2 如何定制错误的json数据
- 自定义异常处理&返回定制json数据:
1 |
|
用以上方法没有自适应效果,浏览器和客户端返回都是JSON数据
我们可以看到源码中,BasicErrorController
类是用来处理自适应的
- 转发到/error进行自适应响应效果处理
1 |
|
将我们的定制数据携带出去;
出现错误以后,会来到/error请求,会被
BasicErrorController.class
处理,响应出去可以获取的数据是由getErrorAttributes
得到的(是AbstractErrorController.class
(ErrorController)规定的方法);- 完全来编写一个ErrorController的实现类【或者是编写AbstractErrorController的子类】,放在容器中;
- 页面上能用的数据,或者是json返回能用的数据都是通过errorAttributes.getErrorAttributes得到;
- 自定义:
1
2
3
4
5
6
7
8
9
10
11
12
13// 给容器中加入我们自己定义的ErrorAttributes
public class MyErrorAttributes extends DefaultErrorAttributes {
public Map<String, Object> getErrorAttributes(
RequestAttributes requestAttributes, boolean includeStackTrace) {
Map<String, Object> map =
super.getErrorAttributes(requestAttributes, includeStackTrace);
map.put("company", "MysteryGuest");
return map;
}
}最终的效果:响应是自适应的,可以通过定制ErrorAttributes改变需要返回的内容