当前位置:   article > 正文

在Spring Boot中如何实现异常处理?_springboot异常处理

springboot异常处理

在Spring Boot中,异常处理可以通过几种方式实现,以提高应用程序的健壮性和用户体验。这些方法包括使用@ControllerAdvice注解、@ExceptionHandler注解、实现ErrorController接口等。下面是一些实现Spring Boot异常处理的常用方法:

1. 使用@ControllerAdvice@ExceptionHandler

@ControllerAdvice是一个用于全局异常处理的注解,它允许你在整个应用程序中处理异常,而不需要在每个@Controller中重复相同的异常处理代码。@ExceptionHandler用于定义具体的异常处理方法。

  1. @ControllerAdvice
  2. public class GlobalExceptionHandler {
  3. @ExceptionHandler(value = Exception.class)
  4. public ResponseEntity<Object> handleGeneralException(Exception ex, WebRequest request) {
  5. Map<String, Object> body = new LinkedHashMap<>();
  6. body.put("timestamp", LocalDateTime.now());
  7. body.put("message", "An error occurred");
  8. return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR);
  9. }
  10. @ExceptionHandler(value = CustomException.class)
  11. public ResponseEntity<Object> handleCustomException(CustomException ex, WebRequest request) {
  12. Map<String, Object> body = new LinkedHashMap<>();
  13. body.put("timestamp", LocalDateTime.now());
  14. body.put("message", ex.getMessage());
  15. return new ResponseEntity<>(body, HttpStatus.BAD_REQUEST);
  16. }
  17. }

2. 实现ErrorController接口

如果你想自定义/error路径下的错误页面或响应,可以通过实现Spring Boot的ErrorController接口来实现。

  1. @Controller
  2. public class CustomErrorController implements ErrorController {
  3. @RequestMapping("/error")
  4. public String handleError(HttpServletRequest request) {
  5. // 可以获取错误状态码和做其他逻辑处理
  6. Object status = request.getAttribute(RequestDispatcher.ERROR_STATUS_CODE);
  7. if (status != null) {
  8. int statusCode = Integer.parseInt(status.toString());
  9. // 根据状态码返回不同的视图名或模型
  10. }
  11. return "errorPage"; // 返回错误页面的视图名
  12. }
  13. @Override
  14. public String getErrorPath() {
  15. return "/error";
  16. }
  17. }

3. ResponseEntityExceptionHandler扩展

通过扩展ResponseEntityExceptionHandler类,你可以覆盖其中的方法来自定义处理特定的异常。这个类提供了一系列方法来处理Spring MVC抛出的常见异常。

  1. @ControllerAdvice
  2. public class CustomResponseEntityExceptionHandler extends ResponseEntityExceptionHandler {
  3. @Override
  4. protected ResponseEntity<Object> handleMethodArgumentNotValid(MethodArgumentNotValidException ex,
  5. HttpHeaders headers, HttpStatus status, WebRequest request) {
  6. Map<String, Object> body = new LinkedHashMap<>();
  7. body.put("timestamp", LocalDateTime.now());
  8. body.put("status", status.value());
  9. List<String> errors = ex.getBindingResult()
  10. .getFieldErrors()
  11. .stream()
  12. .map(x -> x.getDefaultMessage())
  13. .collect(Collectors.toList());
  14. body.put("errors", errors);
  15. return new ResponseEntity<>(body, HttpStatus.BAD_REQUEST);
  16. }
  17. // 其他异常处理...
  18. }

通过这些方法,Spring Boot允许开发者灵活地处理应用程序中的异常,无论是全局处理还是特定异常的定制化处理,都能以优雅和统一的方式进行。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/194629
推荐阅读
相关标签
  

闽ICP备14008679号