Exception
-
Spring Boot: Exception 처리Spring Boot 🍃 2023. 12. 4. 00:01
보고 배운 인강 1 링크 보고 배운 인강 2 링크 예외란? Exception ? 프로그램이 예상치 못한 상황을 만났을 때 오류를 발생시키는 것 스프링 MVC에서 예외를 처리하는 방법 REST API : RestControllerAdvice ViewResolver : ControllerAdvice @RestControllerAdvice 어플리케이션의 전역적 예외 처리 REST API용으로 객체를 응답하는 방식 (주로 JSON) 옵션 값 지정으로 특정 패키지 혹은 특정 클래스에서 발생하는 예외만 처리하는 파일을 만들수도 있다. 1. 특정 패키지에서 발생하는 예외만 처리 @RestControllerAdvice(basePackages = "com.example.dice.controller") 2. 특정 클래스에..