在Spring Boot 3中,可以通过@ControllerAdvice注解创建全局异常处理器,以集中处理应用程序中发生的异常。以下是一个简单的全局异常处理器示例:
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler;
@ControllerAdvice
public class GlobalExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(Exception.class)
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public String handleAllExceptions(Exception ex) {
// 记录日志,处理其他逻辑
return "An error occurred: " + ex.getMessage();
}
@Override
protected ResponseEntity<Object> handleMethodArgumentNotValid(MethodArgumentNotValidException ex,
HttpHeaders headers,
HttpStatus status,
WebRequest request) {
// 记录日志,处理其他逻辑
return new ResponseEntity<>("Validation failed: " + ex.getBindingResult().toString(), HttpStatus.BAD_REQUEST);
}
// 可以添加更多的异常处理方法
}
在这个例子中,我们定义了两个异常处理方法:
handleAllExceptions
处理所有类型的异常。handleMethodArgumentNotValid
处理方法参数验证失败的异常,通常由@Valid注解触发。
这些异常处理方法可以记录日志、通知管理员或者向前端返回一个友好的错误消息。这样,你就可以集中处理应用程序中的异常,而不是在每个控制器方法中重复处理相同的逻辑。