Spring/Spring Boot
-
[ExceptionHandler] 작은 실수로 만나게 될 2가지 에러Spring/Spring Boot 2023. 4. 30. 00:39
☑️ 개요 개인 프로젝트를 진행하면서 API의 기능을 정상적으로 완료할 수 없는 상황에서 유저에게 어떠한 예외 상황이 발생하였는지 리턴하는 기능이 필요했다. Exception을 발생시기고 ExceptionHandler를 통해 ResponseEntity를 리턴했다. 이를 적용하면서 두 가지 비슷하지만 다른 이유의 에러가 발생하여서 이 글을 작성한다. Case 1) Could not resolve parameter [0] java.lang.IllegalStateException: Could not resolve parameter [0] in public org.springframework.http.ResponseEntity ~.Controller.-method(~.-DTO): No suitable resol..