[Spring-Error] @ExceptionHandler 호출이 안 되는 문제 (예외 처리가 안됨)
내가 겪은 문제 API 통신을 할 때 @ExceptionHandler 애너테이션이 호출되지 않는 문제가 있었다. 문제가 발생하는 코드는 아래와 같다. ApiExceptionController @Slf4j @RestController public class ApiExceptionController { @GetMapping("/api/members/{id}") public MemberDto getMember(@PathVariable("id") String id) { if (id.equals("ex")) { throw new RuntimeException("잘못된 사용자"); } if (id.equals("bad")) { log.info("ApiExceptionController 호출"); throw new ..
Spring
2023. 6. 28. 14:00