如何在春季引导休息api中捕获异常

时间:2018-03-23 13:58:34

标签: json spring rest spring-boot exception

我有一个带有以下代码的休息控制器

function myFunction(param){
    UrlFetchApp request
    Check if any active request // I need this part of the code
        do something
}

但是如果json数据与Student对象不匹配,或者格式错误则为com.fasterxml.jackson.core.JsonParseException:意外字符('"'(代码) 34))扔了。

防止这种情况的最佳做法是什么

3 个答案:

答案 0 :(得分:0)

使用Spring ExceptionHandler来执行此操作

答案 1 :(得分:0)

您可以根据异常类型指定ExceptionHandler,并应用您想要使用的错误代码。

@ExceptionHandler(JsonParseException.class)
public JacksonExceptionHandler {
  public ResponseEntity<String> handleError(final Exception exception) {
    HttpStatus status = HttpStatus.BAD_REQUEST;
    if (exception != null) {
        LOGGER.warn("Responding with status code {} and exception message {}", status, exception.getMessage());
        return new ResponseEntity<>(exception.getMessage(), status);
    }
}

此外,您可以使用javax.validation来验证您收到的实体,然后Spring Boot将自动执行所有验证。只需将@Valid添加到正文中即可。

答案 2 :(得分:0)

我发现我需要在JsonProcessingException中捕获JsonParseException@ExceptionHandler的扩展名),而不是JsonParseException

@ControllerAdvice
public class FeatureToggleControllerAdvice {

    @ExceptionHandler(JsonProcessingException.class)
    public ResponseEntity<JSONAPIDocument> handleJsonParseException(JsonProcessingException ex) {
        final Error error = new Error();
        error.setId(UUID.randomUUID().toString());
        error.setStatus(HttpStatus.BAD_REQUEST.toString());
        error.setTitle(ex.getMessage());

        return new ResponseEntity<>(JSONAPIDocument
                .createErrorDocument(Collections.singleton(error)), HttpStatus.NOT_FOUND);
    }

}

在上面的示例中使用JsonParseException并没有发现任何问题,但是使用JsonProcessingException可以正常工作。