@ControllerAdvice 를 이용한 예외 처리 이슈 회사에서는 내려줘야 할 Response 에러 포맷이 정해져 있다. 에러를 아름답게 형식화하여 json으로 내려주고 싶다 해결 @ControllerAdvice 로 커스터마이징하여 특정 컨트롤러, 예외 타입에 대해 반환할 응답 JSON 을 정의 할 수 있다. 주요 예외 처리는 다음과 같다. @ControllerAdvice public class CustomRestExceptionHandler { @ExceptionHandler(HttpMessageNotReadableException.class) public ResponseEntity handleHttpMessageNotReadableException( HttpMessageNotReadableExce..