91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
水城县| 京山县| 多伦县| 临西县| 沅陵县| 沙坪坝区| 思南县| 彝良县| 定日县| 玉屏| 凤庆县| 水城县| 普陀区| 芦山县| 东阳市| 色达县| 枣强县| 上饶市| 申扎县| 房产| 漠河县| 合江县| 镇巴县| 久治县| 锦州市| 黑龙江省| 井冈山市| 浙江省| 浦东新区| 蚌埠市| 鸡西市| 武乡县| 图木舒克市| 德令哈市| 罗平县| 洛宁县| 南平市| 北京市| 雅江县| 尚义县| 泸溪县|