Spring Boot - Exception Handling
Consider this @ControllerAdvice class snippet:
@ExceptionHandler(Exception.class) public ResponseEntityWhy might this cause problems in a Spring Boot app?handleAll(Exception ex) { return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body("Error occurred"); }
