<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
將自定義錯誤頁面放在 templates 的 error 資料夾下,SpringBoot 精確匹配錯誤資訊,使用 4xx.html 或者 5xx.html 頁面可以列印錯誤資訊
4xx —— 列印 status 及 message 資訊
<h2 th:text="${status}">page not found</h2> <h3 th:text="${#message}">We Couldn't Find This Page</h3>
5xx—— 列印 message 及 trace 資訊
<h3 th:text="${message}">Something went wrong.</h3> <p class="nrml-txt" th:text="${trace}">Why not try refreshing you page? Or you can <a href="#" rel="external nofollow" >contact our support</a> if the problem persists.</p>
自定義全域性例外處理類,處理 ArithmeticException 及 NullPointerException 異常
package com.wanqing.admin.exception; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; @Slf4j @ControllerAdvice // 使用此註釋 public class GlobalExceptionHandler { @ExceptionHandler({ArithmeticException.class, NullPointerException.class }) // 使用此註釋,大括號內為可以處理的異常資訊 public String handleArithException(Exception e){ log.info("異常是:" + e); return "login"; // 返回一個檢視地址(ModelAndView) } }
原理:
使用 ExceptionHandlerExceptionResolver 例外處理器處理用 @ExceptionHandler 註釋的異常
自定義異常類範例程式碼:
import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; @ResponseStatus(value = HttpStatus.FORBIDDEN, reason = "使用者數量太多~~") // 異常可以返回狀態碼資訊 public class userToMany extends RuntimeException{ // 有參構造器 public userToMany(String message){ super(message); } public userToMany(){ } }
原理:
ResponseStatusExceptionResolver 處理器可以處理 @ResponseStatus 註解的異常,得到 @ResponseStatus 註解的資訊,呼叫 response.sendError(statusCode) 方法將錯誤資訊返回,並行送 /error 請求,交由底層處理
sendError —— 表示此次請求立刻結束,發出 /error 請求,SpringBoot 找誰能處理,都不能處理返回預設的錯誤頁
protected ModelAndView applyStatusAndReason(int statusCode, @Nullable String reason, HttpServletResponse response) throws IOException { if (!StringUtils.hasLength(reason)) { response.sendError(statusCode); } else { String resolvedReason = this.messageSource != null ? this.messageSource.getMessage(reason, (Object[])null, reason, LocaleContextHolder.getLocale()) : reason; response.sendError(statusCode, resolvedReason); } return new ModelAndView(); }
使用 DefaultHandlerExceptionResolver 例外處理器能處理 SpringMVC 底層異常,其能處理我異常種類如下
protected ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, @Nullable Object handler, Exception ex) { try { if (ex instanceof HttpRequestMethodNotSupportedException) { return this.handleHttpRequestMethodNotSupported((HttpRequestMethodNotSupportedException)ex, request, response, handler); } // 此處省略............. if (ex instanceof HttpMessageNotWritableException) { return this.handleHttpMessageNotWritable((HttpMessageNotWritableException)ex, request, response, handler); } if (ex instanceof MethodArgumentNotValidException) { return this.handleMethodArgumentNotValidException((MethodArgumentNotValidException)ex, request, response, handler); } } catch (Exception var6) { if (this.logger.isWarnEnabled()) { this.logger.warn("Failure while trying to resolve exception [" + ex.getClass().getName() + "]", var6); } } return null; }
自定義異常解析器需要滿足以下:
自定義異常解析器範例程式碼:
import javax.servlet.http.HttpServletResponse; import java.io.IOException; @Order(value = Ordered.HIGHEST_PRECEDENCE) // 優先順序數位越小,優先順序越高 @Component // 註冊到容器中 public class CustomerHandlerResolver implements HandlerExceptionResolver { @Override public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) { try { httpServletResponse.sendError(511, "我不喜歡的錯誤"); } catch (IOException e1){ e1.printStackTrace(); } return new ModelAndView(); } }
自定義例外處理器被加入(未調整優先順序時,預設加到最後):
交由ErrorViewResolver的情況 :
情況一: response.sendError ,error 請求轉給 Controller
情況二: 判斷異常請求無人處理,tomcat 底層 response.sendError
ErrorViewResolver處理方法:
BasicErrorController 得到要去的地址後由 ErrorViewResolver 解析,解析規則為拼接狀態碼等資訊
—— 即 ErrorViewResolver 是最後的例外處理, 沒人處理的異常,被它處理
到此這篇關於SpringBoot自定義錯誤處理邏輯詳解的文章就介紹到這了,更多相關SpringBoot錯誤處理邏輯內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45