SrpingBoot 환경에서 간단한 사용자 회원가입과 로그인을 구현하는 restAPI 를 만들다가, 예외처리를 위해 @ExceptionHandler 를 사용하던 도중 @RestControllerAdvice 와 ResponseEntityExceptionHandler 관련한 내용에 대해 궁금증이 생겨 찾아본 결과를 포스팅 하고자 한다. 사용한 스프링 부트 버전은 다음과 같다. 작업 환경 spring boot 3.2.2 1. @ControllerAdvice 와 RestControllerAdvice 의 차이 우선 나는 RestControllerAdvice 를 사용해서 관리할 ExceptionHandler 들을 하나의 파일로 묶었다. 이 때 ControllerAdvice 와 RestControllerAdvice ..