Skip to content

Instantly share code, notes, and snippets.

@andersonbosa
Last active February 14, 2025 18:26
Show Gist options
  • Save andersonbosa/da7e8846d5e632681fe85ca7e48f34f3 to your computer and use it in GitHub Desktop.
Save andersonbosa/da7e8846d5e632681fe85ca7e48f34f3 to your computer and use it in GitHub Desktop.
add exception handler to spring boot

file: infra/GlobalExceptionHandler.java

@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());
    }

}
@andersonbosa
Copy link
Author

add swagger to API documentation

file: pom.xml

<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webmvc-ui -->
<dependency>
    <groupId>org.springdoc</groupId>
    <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
    <version>2.8.4</version>
</dependency>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment