猿问

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

我有一个带有发布请求的控制器。我正在尝试使用简单的 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 创建自定义处理程序的解决方案是什么?


白衣非少年
浏览 342回答 1
1回答

江户川乱折腾

我发现问题是因为 ResponseEntityExceptionHandler 已经有一个方法来处理 BindExceptions。这意味着您不能为此“覆盖”异常处理。许多异常也是如此(参见类 ResponseEntityExceptionHandler:106)。因此,如果您想创建自己的绑定异常处理程序,则需要覆盖超类中处理它的方法。它看起来像这样:@Override&nbsp; &nbsp; protected ResponseEntity<Object> handleBindException(BindException ex, HttpHeaders headers,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HttpStatus status, WebRequest request) {&nbsp; &nbsp; return handleExceptionInternal(...);}有了它,您可以退回任何您需要的东西。所以我只找到了这个解决方案,如果有人知道其他解决方案,请不要犹豫在这里写:)
随时随地看视频慕课网APP

相关分类

Python
我要回答