您好,登錄后才能下訂單哦!
這篇文章主要介紹“SpringBoot中異常處理實(shí)例分析”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“SpringBoot中異常處理實(shí)例分析”文章能幫助大家解決問題。
在我們編寫程序的過程中,程序中可能隨時(shí)發(fā)生各種異常,那么我們?nèi)绾蝺?yōu)雅的處理各種異常呢?
1、攔截系統(tǒng)中部分異常,返回自定義的響應(yīng)。
比如:
系統(tǒng)發(fā)生HttpRequestMethodNotSupportedException異常,我們需要返回如下信息。
http的狀態(tài)碼:返回 405
{ code: 自定義異常碼, message: 錯(cuò)誤消息 }
2、實(shí)現(xiàn)自定義異常的攔截
攔截我們自己寫的 BizException
1、引入jar包
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> </dependencies>
注意:
引入spring-boot-starter-validation是為了驗(yàn)證請(qǐng)求的中的參數(shù),然后當(dāng)參數(shù)不滿足時(shí)拋出異常。
2、定義一個(gè)自定義異常
public class BizException extends RuntimeException { public BizException() { } public BizException(String message) { super(message); } public BizException(String message, Throwable cause) { super(message, cause); } public BizException(Throwable cause) { super(cause); } public BizException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }
解釋
提供一個(gè) /exception/password api,需要傳遞一個(gè)password參數(shù)
1、當(dāng)不傳遞 password 參數(shù)時(shí)將拋出MethodArgumentNotValidException異常。
2、當(dāng)password傳遞exception參數(shù)時(shí),則拋出BizException異常。
4、測(cè)試
1、不傳遞password參數(shù)響應(yīng)是什么
1、使用默認(rèn)的DefaultHandlerExceptionResolver處理
這個(gè)類DefaultHandlerExceptionResolver是默認(rèn)自動(dòng)配置的。
從上圖中可以看出有一個(gè)默認(rèn)字段的返回值
2、使用ResponseEntityExceptionHandler處理
1、編寫異常處理代碼-使用默認(rèn)的邏輯
@RestControllerAdvice public class RestExceptionHandler extends ResponseEntityExceptionHandler { @Override protected ResponseEntity<Object> handleMethodArgumentNotValid(MethodArgumentNotValidException ex, HttpHeaders headers, HttpStatus status, WebRequest request) { // 此處自定義返回值 return super.handleMethodArgumentNotValid(ex, headers, status, request); } }
可以看到handleMethodArgumentNotValid
方法直接調(diào)用父類的方法,即使用默認(rèn)的處理方式。
從上圖中可以看出返回值是空
2、編寫異常處理代碼-返回值返回自定義內(nèi)容
@Component @RestControllerAdvice public class RestExceptionHandler extends ResponseEntityExceptionHandler { @Override protected ResponseEntity<Object> handleMethodArgumentNotValid(MethodArgumentNotValidException ex, HttpHeaders headers, HttpStatus status, WebRequest request) { // 此處自定義返回值 return super.handleMethodArgumentNotValid(ex, headers, status, request); } @Override protected ResponseEntity<Object> handleHttpRequestMethodNotSupported(HttpRequestMethodNotSupportedException ex, HttpHeaders headers, HttpStatus status, WebRequest request) { Set<HttpMethod> supportedMethods = ex.getSupportedHttpMethods(); // 自定義請(qǐng)求返回值 Map<String, Object> body = new HashMap<>(4); body.put("code", "錯(cuò)誤碼"); body.put("message", "當(dāng)前請(qǐng)求的方法不支持,支持的請(qǐng)求方法為:" + supportedMethods); return new ResponseEntity<>(body, headers, status); } }
由上面的代碼可知handleHttpRequestMethodNotSupported方法返回了自定義的body。
從上圖中可以看出,返回了我們自己定義的返回值。
2、password參數(shù)傳遞exception1、使用ResponseEntityExceptionHandler或DefaultHandlerExceptionResolver處理
由上圖可知返回結(jié)果不對(duì),我們需要自定義返回結(jié)果。
2、返回自定義異常
1、編寫B(tài)izException處理代碼
@RestControllerAdvice public class BizExceptionHandler { @ExceptionHandler(BizException.class) public ResponseEntity<Object> handleBizException(BizException exception) { // 自定義請(qǐng)求返回值 Map<String, Object> body = new HashMap<>(4); body.put("code", "錯(cuò)誤碼"); body.put("message", "異常信息為:" + exception.getMessage()); return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR); } }
2、測(cè)試返回結(jié)果
從上圖可知返回了自定義信息
1、如果實(shí)現(xiàn)自定義異常處理類上使用@RestControllerAdvice
注解方法上使用@ExceptionHandler
來(lái)處理特定的異常
2、ResponseEntityExceptionHandler默認(rèn)處理那些異常
3、使用了ResponseEntityExceptionHandler后,為什么發(fā)生了異常后返回體為空
默認(rèn)情況下,實(shí)現(xiàn)了 ResponseEntityExceptionHandler
這個(gè)類后,這個(gè)類處理的所有異常的響應(yīng)結(jié)果都是 null
,如果想返回別的值需要我們自己去處理。
關(guān)于“SpringBoot中異常處理實(shí)例分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。