我有一个发布请求的控制器。我正在尝试使用简单的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创建自定义处理程序的解决方案是什么?
答案 0 :(得分:0)
我发现问题是因为ResponseEntityExceptionHandler已经具有处理BindExceptions的方法。这意味着您不能为此“覆盖”异常处理。许多异常也是如此(请参见类ResponseEntityExceptionHandler:106)。 因此,如果要创建自己的Bind Exception处理程序,则需要重写超类中处理该方法的方法。 看起来像这样:
@Override
protected ResponseEntity<Object> handleBindException(BindException ex, HttpHeaders headers,
HttpStatus status, WebRequest request) {
return handleExceptionInternal(...);
}
有了它,您可以返回所需的任何内容。所以我只找到了这个解决方案,如果有人知道其他任何信息,请不要犹豫在这里写:)