gpt4 book ai didi

java - 使用全局异常处理程序在 SpringBoot 应用程序中处理 BindException

转载 作者:行者123 更新时间:2023-12-02 03:20:23 26 4
gpt4 key购买 nike

我有一个带有发布请求的 Controller 。我正在尝试使用简单的 NotNull 注释来验证 POJO。我正在使用 ControllerAdvice 来处理异常。

@PostMapping("/something")
public MyResponse post(@Valid MyRequest request) {
// nevermind...
}
public class MyRequest {
@NotNull
private Integer something;
// Getters setters nevermind...
}
@ControllerAdvice
public class RestResponseEntityExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(value = BindException.class)
protected ResponseEntity<Object> handleBindException(RuntimeException ex, WebRequest request) {
return handleExceptionInternal(...);
}
}

所以我正在尝试使用它,但是当我启动应用程序时,我得到了以下信息:

org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class org.springframework.validation.BindException]: {protected org.springframework.http.ResponseEntity com.liligo.sponsoredads.controller.RestResponseEntityExceptionHandler.handleBindException(java.lang.Exception,org.springframework.web.context.request.WebRequest), public final org.springframework.http.ResponseEntity org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler.handleException(java.lang.Exception,org.springframework.web.context.request.WebRequest) throws java.lang.Exception}

所以我想为 BindExceptions 创建我自己的处理程序,但是当我为 BindException 类创建 ExceptionHandler 时,spring 应用程序没有启动。如果我注释掉 handleBindException 方法,应用程序将启动,如果发生 BindException,它只会返回 400 并注销错误,但不会将任何内容作为响应正文发回。

为 BindExceptions 创建自定义处理程序的解决方案是什么?

最佳答案

我发现问题是因为 ResponseEntityExceptionHandler 已经有一个方法来处理 BindExceptions。这意味着您不能“覆盖”它的异常处理。许多异常也是如此(请参阅类 ResponseEntityExceptionHandler:106)。因此,如果您想创建自己的绑定(bind)异常处理程序,则需要重写父类(super class)中处理它的方法。它看起来像这样:

@Override
protected ResponseEntity<Object> handleBindException(BindException ex, HttpHeaders headers,
HttpStatus status, WebRequest request) {
return handleExceptionInternal(...);
}

有了它,您可以返回任何您需要的东西。所以我只找到了这个解决方案,如果有人知道任何其他解决方案,请不要犹豫在这里写:)

关于java - 使用全局异常处理程序在 SpringBoot 应用程序中处理 BindException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54999566/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com