I has implemented a simple validation using javax.validation, latest version.
So my class:
@Getter
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class Person {
@NotNull(message = "Required field")
@JsonAlias(value = "current_name")
private String name;
@NotNull(message = "Required field")
private String age;
}
And then I created a Advice to handle and customize the exception message. Like this:
@ControllerAdvice
public class CustomRestExceptionHandler extends ResponseEntityExceptionHandler {
@Override
protected ResponseEntity<Object> handleMethodArgumentNotValid(
MethodArgumentNotValidException ex,
HttpHeaders headers,
HttpStatus status,
WebRequest request) {
List<FieldError> errors = ex.getBindingResult().getFieldErrors();
List<Field> listOfErrors = errors.stream()
.map(error -> Field.builder()
.field(error.getField())
.message(error.getDefaultMessage())
.build())
.collect(Collectors.toList());
ApiError apiError = new ApiError("validation_error", "Some invalid fields", listOfErrors);
return handleExceptionInternal(ex, apiError, headers, HttpStatus.BAD_REQUEST, request);
}
}
So, when a get the error.getField(), It is a original attribute name: "name". But I need to get the alias: "current_name".
I'm using Jackson lib.
It's possible?
In your handleMethodArgumentNotValid method, do the following
Find matching Field and @JsonAlias annotations on that field
Read value of the annotation --> which is the value that you put in
error.getField()
Complete working example:
Required libraries