Gui*_*reg 2 java spring exception spring-mvc spring-boot
我有一个带有 post 请求的控制器。我正在尝试使用简单的 NotNull 注释来验证 POJO。我正在使用 ControllerAdvice 来处理异常。
@PostMapping("/something")
public MyResponse post(@Valid MyRequest request) {
// nevermind...
}
Run Code Online (Sandbox Code Playgroud)
public class MyRequest {
@NotNull
private Integer something;
// Getters setters nevermind...
}
Run Code Online (Sandbox Code Playgroud)
@ControllerAdvice
public class RestResponseEntityExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(value = BindException.class)
protected ResponseEntity<Object> handleBindException(RuntimeException ex, WebRequest request) {
return handleExceptionInternal(...);
}
}
Run Code Online (Sandbox Code Playgroud)
所以我正在尝试使用它,但是当我启动应用程序时,我得到了以下信息:
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}
Run Code Online (Sandbox Code Playgroud)
所以我想为 BindExceptions 创建我自己的处理程序,但是当我为 BindException 类创建 ExceptionHandler 时,spring 应用程序没有启动。如果我注释掉 handleBindException 方法,应用程序将启动,如果发生 BindException,它只会返回 400 并注销错误,但不会作为响应正文发回任何内容。
为 BindExceptions 创建自定义处理程序的解决方案是什么?
我发现问题是因为 ResponseEntityExceptionHandler 已经有一个方法来处理 BindExceptions。这意味着您不能为此“覆盖”异常处理。许多异常也是如此(参见 ResponseEntityExceptionHandler:106 类)。因此,如果您想创建自己的 Bind Exception 处理程序,那么您需要覆盖超类中处理它的方法。它看起来像这样:
@Override
protected ResponseEntity<Object> handleBindException(BindException ex, HttpHeaders headers,
HttpStatus status, WebRequest request) {
return handleExceptionInternal(...);
}
Run Code Online (Sandbox Code Playgroud)
有了它,您可以返回任何您需要的东西。所以我只找到了这个解决方案,如果有人知道其他解决方案,请不要犹豫在这里写:)
| 归档时间: |
|
| 查看次数: |
1862 次 |
| 最近记录: |