深入理解Spring Boot中的异常处理机制
大家好,我是微赚淘客系统3.0的小编,也是冬天不穿秋裤,天冷也要风度的程序猿!
在任何应用程序开发中,异常处理都是至关重要的一部分。Spring Boot作为一个现代化的Java开发框架,提供了强大而灵活的异常处理机制,使开发者能够优雅地处理各种异常情况,保障应用的稳定性和可靠性。
1. 全局异常处理器
1.1. @ControllerAdvice和@ExceptionHandler
Spring Boot通过@ControllerAdvice注解和@ExceptionHandler注解来实现全局异常处理,以下是一个示例:
package cn.juwatech.exceptionhandling;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;
@ControllerAdvice
public class GlobalExceptionHandler {
@ExceptionHandler(Exception.class)
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
@ResponseBody
public ResponseEntity<String> handleException(Exception e) {
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body("Internal Server Error: " + e.getMessage());
}
@ExceptionHandler(ResourceNotFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)
@ResponseBody
public ResponseEntity<String> handleResourceNotFoundException(ResourceNotFoundException e) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Resource Not Found: " + e.getMessage());
}
}
1.2. 自定义异常类
开发者可以根据具体业务需求定义自己的异常类,例如:
package cn.juwatech.exceptionhandling;
public class ResourceNotFoundException extends RuntimeException {
public ResourceNotFoundException(String message) {
super(message);
}
}
2. 异常处理与RESTful API
2.1. @RestControllerAdvice和@ResponseBody
针对RESTful API,可以使用@RestControllerAdvice注解来统一处理异常,并通过@ResponseBody注解返回JSON格式的错误信息,示例如下:
package cn.juwatech.exceptionhandling;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestControllerAdvice;
@RestControllerAdvice
public class RestExceptionHandler {
@ExceptionHandler(Exception.class)
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public ResponseEntity<ErrorResponse> handleException(Exception e) {
ErrorResponse errorResponse = new ErrorResponse(HttpStatus.INTERNAL_SERVER_ERROR.value(), e.getMessage());
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(errorResponse);
}
@ExceptionHandler(ResourceNotFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)
public ResponseEntity<ErrorResponse> handleResourceNotFoundException(ResourceNotFoundException e) {
ErrorResponse errorResponse = new ErrorResponse(HttpStatus.NOT_FOUND.value(), e.getMessage());
return ResponseEntity.status(HttpStatus.NOT_FOUND).body(errorResponse);
}
// 自定义ErrorResponse类用于返回错误信息
static class ErrorResponse {
private int status;
private String message;
// 省略构造方法和getter/setter
}
}
3. 异常处理与页面
3.1. ErrorController接口
Spring Boot提供了ErrorController接口,用于处理应用程序中的错误页面,开发者可以根据需要自定义异常处理的页面显示:
package cn.juwatech.exceptionhandling;
import org.springframework.boot.web.servlet.error.ErrorController;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class CustomErrorController implements ErrorController {
private static final String PATH = "/error";
@RequestMapping(value = PATH)
public String error() {
// 返回自定义的错误页面
return "error";
}
@Override
public String getErrorPath() {
return PATH;
}
}
结语
本文深入探讨了Spring Boot中的异常处理机制,包括全局异常处理器、RESTful API的异常处理、错误页面的处理等方面。通过合理利用这些机制,开发者能够更好地管理和处理应用程序中的异常情况,保证应用的稳定性和可靠性。
微赚淘客系统3.0小编出品,必属精品,转载请注明出处!
标签:Spring,Boot,springframework,深入,HttpStatus,ResponseEntity,import,org,public From: https://www.cnblogs.com/szk123456/p/18290380