ControllerAdvice란?

김명수·2026년 2월 16일

매일메일

목록 보기
109/127
post-thumbnail

ControllerAdvice란?

●ControllerAdvice란?

  • @ControllerAdvice는 모든 컨트롤러에 대해 전역 기능을 제공하는 애너테이션이며, @ControllerAdvice가 선언된 클래스에 @ExceptionHandler, @InitBinder, @ModelAttribute를 등록하면 예외 처리, 바인딩 등을 한 곳에서 처리할 수 있어, 코드의 중복을 줄이고 유지보수성을 높일 수 있음

  • @ControllerAdvice는 내부에 @Component가 포함되어 있어 컴포넌트 스캔 과정에서 빈으로 등록되며, @RestControllerAdvice는 내부에 @ResponseBody를 포함하여 @ExceptionHandler와 함께 사용될 때 예외 응답을 Json 형태로 내려준다는 특징이 있음

profile
신입개발자

0개의 댓글