Notice
Recent Posts
Recent Comments
Link
목록ExceptionHandler (1)
SeouliteLab
[Java/자바] Spring @ExceptionHandler: 예외 처리하기
Spring 프레임워크에서 @ExceptionHandler 어노테이션은 컨트롤러 내에서 발생하는 예외를 처리할 때 사용됩니다. 이 글에서는 @ExceptionHandler 어노테이션의 사용법과 예제 코드를 통해 자세히 알아보겠습니다. 1. 기본적인 @ExceptionHandler 사용법 가장 간단한 형태의 @ExceptionHandler 어노테이션은 다음과 같이 컨트롤러 클래스 내에서 사용됩니다. import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotati..
프로그래밍
2024. 3. 12. 11:03