我有一个带有以下代码的休息控制器
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))扔了。
防止这种情况的最佳做法是什么
答案 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
可以正常工作。