我知道这里有一些有关如何解析ENUM,如何解析自定义JSON结构的类似问题。但是这里我的问题是,当用户提交的JSON与预期不符时,如何仅给出更好的消息。
这是代码:
@PutMapping
public ResponseEntity updateLimitations(@PathVariable("userId") String userId,
@RequestBody LimitationParams params) {
Limitations limitations = user.getLimitations();
params.getDatasets().forEach(limitations::updateDatasetLimitation);
params.getResources().forEach(limitations::updateResourceLimitation);
userRepository.save(user);
return ResponseEntity.noContent().build();
}
我期望的请求正文是这样的:
{
"datasets": {"public": 10},
"resources": {"cpu": 2}
}
但是当他们提交这样的内容时:
{
"datasets": {"public": "str"}, // <--- a string is given
"resources": {"cpu": 2}
}
响应将在日志中显示如下内容:
400 JSON parse error: Cannot deserialize value of type `java.lang.Integer` from String "invalid": not a valid Integer value; nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.lang.Integer` from String "invalid": not a valid Integer value
at [来源:(PushbackInputStream);第1行,第23列](通过参考链:com.openbayes.api.users.LimitationParams [“ datasets”]-> java.util.LinkedHashMap [“ public”])
但是我想要的是更易读的消息。
我尝试对ExceptionHandler
使用com.fasterxml.jackson.databind.exc.InvalidFormatException
,但是它不起作用。
答案 0 :(得分:1)
您可以编写控制器建议以捕获异常并返回相应的错误响应。
以下是春季引导中控制器建议的示例:
@RestControllerAdvice
public class ControllerAdvice {
@ExceptionHandler(InvalidFormatException.class)
public ResponseEntity<ErrorResponse> invalidFormatException(final InvalidFormatException e) {
return error(e, HttpStatus.BAD_REQUEST);
}
private ResponseEntity <ErrorResponse> error(final Exception exception, final HttpStatus httpStatus) {
final String message = Optional.ofNullable(exception.getMessage()).orElse(exception.getClass().getSimpleName());
return new ResponseEntity(new ErrorResponse(message), httpStatus);
}
}
@AllArgsConstructor
@NoArgsConstructor
@Data
public class ErrorResponse {
private String errorMessage;
}
答案 1 :(得分:0)
真正的异常是org.springframework.http.converter.HttpMessageNotReadableException。 拦截它,它将起作用。
public ResponseEntity<String> handle(HttpMessageNotReadableException e) {
return ResponseEntity.badRequest().body("your own message" + e.getMessage());
}
答案 2 :(得分:0)
以下错误处理方法对我有用。
@ExceptionHandler(HttpMessageNotReadableException.class)
public ResponseEntity handleAllOtherErrors(HttpMessageNotReadableException formatException) {
String error = formatException.getMessage().toString();
return new ResponseEntity(error, HttpStatus.BAD_REQUEST);