中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

SpringBoot中怎么處理異常

小億
83
2024-04-18 15:01:10
欄目: 編程語言

在SpringBoot中處理異常可以通過編寫一個全局異常處理器來實現。一般情況下,我們可以繼承Spring的ResponseEntityExceptionHandler類,并重寫handleException方法來處理異常。具體實現步驟如下:

  1. 創建一個全局異常處理器類,例如GlobalExceptionHandler。
@ControllerAdvice
public class GlobalExceptionHandler extends ResponseEntityExceptionHandler {

    @ExceptionHandler(Exception.class)
    public ResponseEntity<Object> handleAllExceptions(Exception ex, WebRequest request) {
        // 處理所有異常
        ErrorResponse errorResponse = new ErrorResponse("500", ex.getMessage());
        return new ResponseEntity<>(errorResponse, HttpStatus.INTERNAL_SERVER_ERROR);
    }

    @ExceptionHandler(NotFoundException.class)
    public ResponseEntity<Object> handleNotFoundException(NotFoundException ex, WebRequest request) {
        // 處理自定義異常
        ErrorResponse errorResponse = new ErrorResponse("404", ex.getMessage());
        return new ResponseEntity<>(errorResponse, HttpStatus.NOT_FOUND);
    }
}
  1. 定義一個自定義異常類,例如NotFoundException。
public class NotFoundException extends RuntimeException {

    public NotFoundException(String message) {
        super(message);
    }
}
  1. 在Controller中拋出異常。
@RestController
public class HelloController {

    @GetMapping("/hello")
    public String hello() {
        throw new NotFoundException("Resource not found");
    }
}

通過以上步驟,我們就可以在SpringBoot項目中統一處理異常,并返回統一的錯誤信息給客戶端。在GlobalExceptionHandler中,我們可以定義不同的異常處理方法來處理不同類型的異常,以實現更細粒度的異常處理。

0
临猗县| 密山市| 睢宁县| 绵竹市| 临泉县| 缙云县| 长乐市| 祁门县| 日土县| 民丰县| 和田市| 灌阳县| 渝北区| 信宜市| 柘荣县| 和平区| 九龙县| 利津县| 商洛市| 宜丰县| 大邑县| 嘉定区| 英德市| 左权县| 龙岩市| 凯里市| 沁水县| 宜章县| 安化县| 天津市| 南城县| 分宜县| 泗阳县| 鄂尔多斯市| 许昌县| 锦州市| 新巴尔虎左旗| 应城市| 钟祥市| 修水县| 板桥市|