【Spring Boot】统一异常处理
在Spring Boot中,可以使用@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
处理MethodArgumentNotValidException
异常,这通常是由于@Valid注解验证失败引起的。
这样,当应用程序中发生异常时,会调用相应的异常处理方法,并返回一个合适的响应。同时,可以在异常处理方法中添加日志记录、通知其他系统或者进行其他必要的处理。
评论已关闭