@ControllerAdvice
public class GlobalExceptionHandler {
@ExceptionHandler(MethodArgumentNotValidException.class)
public ResponseEntity<?> handleJakartaValidations(MethodArgumentNotValidException e, HttpServletRequest r) {
Map<String, String> errors = new HashMap<>();
// Alternativa de loop: for (ObjectError error : e.getBindingResult().getAllErrors()) {
e.getBindingResult().getAllErrors().forEach((error) -> {
String fieldName = ((FieldError) error).getField();
String errorMessage = error.getDefaultMessage();
errors.put(fieldName, errorMessage);
});
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(errors.toString());
}
}
Last active
February 14, 2025 18:26
-
-
Save andersonbosa/da7e8846d5e632681fe85ca7e48f34f3 to your computer and use it in GitHub Desktop.
add exception handler to spring boot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add swagger to API documentation
file: pom.xml