摘要:對(duì)應(yīng)的請(qǐng)求信息如下如果是其他客戶端請(qǐng)求,如測(cè)試,會(huì)默認(rèn)返回?cái)?shù)據(jù)在之前的文章中介紹過了的自動(dòng)配置機(jī)制,默認(rèn)錯(cuò)誤處理機(jī)制也是自動(dòng)配置其中的一部分。在這個(gè)包中加載了所有的自動(dòng)配置類,其中就是處理異常的機(jī)制。
??在我們開發(fā)的過程中經(jīng)常會(huì)看到下圖這個(gè)界面,這是SpringBoot默認(rèn)出現(xiàn)異常之后給用戶拋出的異常處理界面。
??對(duì)應(yīng)的請(qǐng)求信息如下:
??如果是其他客戶端請(qǐng)求,如postman測(cè)試,會(huì)默認(rèn)返回json數(shù)據(jù)
{ "timestamp":"2019-08-06 22:26:16", "status":404, "error":"Not Found", "message":"No message available", "path":"/asdad" }
??在之前的文章中介紹過了SpringBoot的自動(dòng)配置機(jī)制,默認(rèn)錯(cuò)誤處理機(jī)制也是自動(dòng)配置其中的一部分。在spring-boot-autoconfiguration-XXX.jar這個(gè)包中加載了所有的自動(dòng)配置類,其中ErrorMvcAutoConfiguration就是SpringBoot處理異常的機(jī)制。
??下面簡(jiǎn)單的分析一下它的機(jī)制
SpringBoot錯(cuò)誤處理機(jī)制??首先看一下ErrorMvcAutoConfiguration這個(gè)類里面主要起作用的幾個(gè)方法
/** * 綁定一些錯(cuò)誤信息 */ @Bean @ConditionalOnMissingBean(value = ErrorAttributes.class, search = SearchStrategy.CURRENT) public DefaultErrorAttributes errorAttributes() { return new DefaultErrorAttributes(this.serverProperties.getError().isIncludeException()); } /** * 默認(rèn)錯(cuò)誤處理 */ @Bean @ConditionalOnMissingBean(value = ErrorController.class, search = SearchStrategy.CURRENT) public BasicErrorController basicErrorController(ErrorAttributes errorAttributes) { return new BasicErrorController(errorAttributes, this.serverProperties.getError(), this.errorViewResolvers); } /** * 錯(cuò)誤處理頁(yè)面 */ @Bean public ErrorPageCustomizer errorPageCustomizer() { return new ErrorPageCustomizer(this.serverProperties, this.dispatcherServletPath); } @Configuration static class DefaultErrorViewResolverConfiguration { private final ApplicationContext applicationContext; private final ResourceProperties resourceProperties; DefaultErrorViewResolverConfiguration(ApplicationContext applicationContext, ResourceProperties resourceProperties) { this.applicationContext = applicationContext; this.resourceProperties = resourceProperties; } /** * 決定去哪個(gè)錯(cuò)誤頁(yè)面 */ @Bean @ConditionalOnBean(DispatcherServlet.class) @ConditionalOnMissingBean public DefaultErrorViewResolver conventionErrorViewResolver() { return new DefaultErrorViewResolver(this.applicationContext, this.resourceProperties); } }errorAttributes
??主要起作用的是下面這個(gè)類
org.springframework.boot.web.servlet.error.DefaultErrorAttributes
??這個(gè)類會(huì)共享很多錯(cuò)誤信息,如:
errorAttributes.put("timestamp", new Date()); errorAttributes.put("status", status); errorAttributes.put("error", HttpStatus.valueOf(status).getReasonPhrase()); errorAttributes.put("errors", result.getAllErrors()); errorAttributes.put("exception", error.getClass().getName()); errorAttributes.put("message", error.getMessage()); errorAttributes.put("trace", stackTrace.toString()); errorAttributes.put("path", path);
??這些信息作為共享信息返回,所以當(dāng)我們使用模板引擎時(shí),也可以像取出其他參數(shù)一樣取出。
basicErrorController//org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController @Controller //定義請(qǐng)求路徑,如果沒有error.path路徑,則路徑為/error @RequestMapping("${server.error.path:${error.path:/error}}") public class BasicErrorController extends AbstractErrorController { //如果支持的格式 text/html @RequestMapping(produces = MediaType.TEXT_HTML_VALUE) public ModelAndView errorHtml(HttpServletRequest request, HttpServletResponse response) { HttpStatus status = getStatus(request); //獲取要返回的值 Mapmodel = Collections .unmodifiableMap(getErrorAttributes(request, isIncludeStackTrace(request, MediaType.TEXT_HTML))); response.setStatus(status.value()); //解析錯(cuò)誤視圖信息,也就是下面1.4中的邏輯 ModelAndView modelAndView = resolveErrorView(request, response, status, model); //返回視圖,如果沒有存在的頁(yè)面模板,則使用默認(rèn)錯(cuò)誤視圖模板 return (modelAndView != null) ? modelAndView : new ModelAndView("error", model); } @RequestMapping public ResponseEntity
??由上面的源碼可知,basicErrorControll主要用于創(chuàng)建請(qǐng)求返回的controller類,并根據(jù)http請(qǐng)求可接受的格式不同返回對(duì)應(yīng)的信息。也就是我們?cè)谖恼碌囊婚_始看到的情況,頁(yè)面請(qǐng)求和接口測(cè)試工具請(qǐng)求得到的結(jié)果略有差異。
errorPageCustomizer??errorPageCustomizer這個(gè)方法調(diào)了同類里面的ErrorPageCustomizer 這個(gè)內(nèi)部類。當(dāng)遇到錯(cuò)誤時(shí),如果沒有自定義error.path屬性,請(qǐng)求會(huì)轉(zhuǎn)發(fā)至/error
/** * {@link WebServerFactoryCustomizer} that configures the server"s error pages. */ private static class ErrorPageCustomizer implements ErrorPageRegistrar, Ordered { private final ServerProperties properties; private final DispatcherServletPath dispatcherServletPath; protected ErrorPageCustomizer(ServerProperties properties, DispatcherServletPath dispatcherServletPath) { this.properties = properties; this.dispatcherServletPath = dispatcherServletPath; } @Override public void registerErrorPages(ErrorPageRegistry errorPageRegistry) { //getPath()得到如下地址,如果沒有自定義error.path屬性,則去/error位置 //@Value("${error.path:/error}") //private String path = "/error"; ErrorPage errorPage = new ErrorPage( this.dispatcherServletPath.getRelativePath(this.properties.getError().getPath())); errorPageRegistry.addErrorPages(errorPage); } @Override public int getOrder() { return 0; } }conventionErrorViewResolver
??下面的代碼只展示部分核心方法
// org.springframework.boot.autoconfigure.web.servlet.error.DefaultErrorViewResolver public class DefaultErrorViewResolver implements ErrorViewResolver, Ordered { static { Mapviews = new EnumMap<>(Series.class); views.put(Series.CLIENT_ERROR, "4xx"); views.put(Series.SERVER_ERROR, "5xx"); SERIES_VIEWS = Collections.unmodifiableMap(views); } @Override public ModelAndView resolveErrorView(HttpServletRequest request, HttpStatus status, Map model) { //使用HTTP完整狀態(tài)碼檢查是否有頁(yè)面可以匹配 ModelAndView modelAndView = resolve(String.valueOf(status.value()), model); if (modelAndView == null && SERIES_VIEWS.containsKey(status.series())) { //使用HTTP狀態(tài)碼第一位匹配初始化中的參數(shù)創(chuàng)建視圖對(duì)象 modelAndView = resolve(SERIES_VIEWS.get(status.series()), model); } return modelAndView; } private ModelAndView resolve(String viewName, Map model) { // 拼接錯(cuò)誤視圖路徑 /error/{viewName} String errorViewName = "error/" + viewName; // 使用模板引擎嘗試創(chuàng)建視圖對(duì)象 TemplateAvailabilityProvider provider = this.templateAvailabilityProviders.getProvider(errorViewName, this.applicationContext); if (provider != null) { return new ModelAndView(errorViewName, model); } //沒有模板引擎,使用靜態(tài)資源文件夾解析視圖 return resolveResource(errorViewName, model); } private ModelAndView resolveResource(String viewName, Map model) { // 遍歷靜態(tài)資源文件夾,檢查是否有存在視圖 for (String location : this.resourceProperties.getStaticLocations()) { try { Resource resource = this.applicationContext.getResource(location); resource = resource.createRelative(viewName + ".html"); if (resource.exists()) { return new ModelAndView(new HtmlResourceView(resource), model); } } catch (Exception ex) { } } return null; } }
??Thymeleaf對(duì)于錯(cuò)誤頁(yè)面的解析如下:
public class ThymeleafTemplateAvailabilityProvider implements TemplateAvailabilityProvider { @Override public boolean isTemplateAvailable(String view, Environment environment, ClassLoader classLoader, ResourceLoader resourceLoader) { if (ClassUtils.isPresent("org.thymeleaf.spring5.SpringTemplateEngine", classLoader)) { String prefix = environment.getProperty("spring.thymeleaf.prefix", ThymeleafProperties.DEFAULT_PREFIX); String suffix = environment.getProperty("spring.thymeleaf.suffix", ThymeleafProperties.DEFAULT_SUFFIX); return resourceLoader.getResource(prefix + view + suffix).exists(); } return false; } }
??錯(cuò)誤頁(yè)面首先會(huì)檢查模板引擎文件夾下的/error/HTTP狀態(tài)碼文件,如果不存在,則去檢查模板引擎下的/error/4xx或者/error/5xx文件,如果還不存在,則檢查靜態(tài)資源文件夾下對(duì)應(yīng)的上述文件
自定義異常頁(yè)面??剛才分析了異常處理機(jī)制是如何工作的,下面我們來(lái)自己定義一個(gè)異常頁(yè)面。根據(jù)源碼分析可以看到,自定義錯(cuò)誤頁(yè)面只需要在模板文件夾下的error文件夾下放置4xx或者5xx文件即可。
[[${status}]] 錯(cuò)誤碼:[[${status}]]
信息:[[${message}]]
時(shí)間:[[${#dates.format(timestamp,"yyyy-MM-dd hh:mm:ss ")}]]
請(qǐng)求路徑:[[${path}]]
??隨意訪問不存在路徑得到下圖
自定義錯(cuò)誤JSON??根據(jù)上面的錯(cuò)誤處理機(jī)制可以得知,最終返回的JSON信息是從一個(gè)map對(duì)象轉(zhuǎn)換出來(lái)的,只需要自定義map中的值,就可以自定義錯(cuò)誤信息的json了。直接重寫DefaultErrorAttributes類的 getErrorAttributes 方法即可。
/** * 自定義錯(cuò)誤信息JSON值 */ @Component public class ErrorAttributesCustom extends DefaultErrorAttributes { //重寫getErrorAttributes方法 @Override public MapgetErrorAttributes(WebRequest webRequest, boolean includeStackTrace) { //獲取原來(lái)的響應(yīng)數(shù)據(jù) Map map = super.getErrorAttributes(webRequest, includeStackTrace); String code = map.get("status").toString(); String message = map.get("error").toString(); HashMap hashMap = new HashMap<>(); //添加我們定制的響應(yīng)數(shù)據(jù) hashMap.put("code", code); hashMap.put("message", message); return hashMap; } }
??使用postman測(cè)試結(jié)果如下:
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/76103.html
摘要:多線程編程這篇文章分析了多線程的優(yōu)缺點(diǎn),如何創(chuàng)建多線程,分享了線程安全和線程通信線程池等等一些知識(shí)。 中間件技術(shù)入門教程 中間件技術(shù)入門教程,本博客介紹了 ESB、MQ、JMS 的一些知識(shí)... SpringBoot 多數(shù)據(jù)源 SpringBoot 使用主從數(shù)據(jù)源 簡(jiǎn)易的后臺(tái)管理權(quán)限設(shè)計(jì) 從零開始搭建自己權(quán)限管理框架 Docker 多步構(gòu)建更小的 Java 鏡像 Docker Jav...
摘要:前提好幾周沒更新博客了,對(duì)不斷支持我博客的童鞋們說聲抱歉了。熟悉我的人都知道我寫博客的時(shí)間比較早,而且堅(jiān)持的時(shí)間也比較久,一直到現(xiàn)在也是一直保持著更新狀態(tài)。 showImg(https://segmentfault.com/img/remote/1460000014076586?w=1920&h=1080); 前提 好幾周沒更新博客了,對(duì)不斷支持我博客的童鞋們說聲:抱歉了!。自己這段時(shí)...
摘要:引入了新的環(huán)境和概要信息,是一種更揭秘與實(shí)戰(zhàn)六消息隊(duì)列篇掘金本文,講解如何集成,實(shí)現(xiàn)消息隊(duì)列。博客地址揭秘與實(shí)戰(zhàn)二數(shù)據(jù)緩存篇掘金本文,講解如何集成,實(shí)現(xiàn)緩存。 Spring Boot 揭秘與實(shí)戰(zhàn)(九) 應(yīng)用監(jiān)控篇 - HTTP 健康監(jiān)控 - 掘金Health 信息是從 ApplicationContext 中所有的 HealthIndicator 的 Bean 中收集的, Spring...
閱讀 3285·2021-11-24 09:39
閱讀 3866·2021-11-22 09:34
閱讀 4799·2021-08-11 11:17
閱讀 1060·2019-08-29 13:58
閱讀 2570·2019-08-28 18:18
閱讀 537·2019-08-26 12:24
閱讀 825·2019-08-26 12:14
閱讀 727·2019-08-26 11:58