반응형
package com.lsj.blog.handler; // Exception 처리 Handler를 따로 패키지를 구성한다.
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestController;
@ControllerAdvice // 어떤 Exception이 오든 이 페이지로 오게 된다.
@RestController
public class GlobalExceptionHandler {
// @ExceptionHandler는 Controller계층에서 발생하는 에러만 잡는다.
@ExceptionHandler(value=Exception.class) // 모든 부모 Exception
public String handleException(Exception e) {
return "<h1>" + e.getMessage() + "</h1>";
}
@ExceptionHandler(value=IllegalArgumentException.class) // 해당 IllegalArgumentException이 발생할 경우 밑에 함수가 작동한다.
public String handleArgumentException(IllegalArgumentException e) {
return "<h1>" + e.getMessage() + "</h1>";
}
}
반응형
'[Java] > [Spring Boot]' 카테고리의 다른 글
[Spring Boot] DB격리 수준 (Read Commit, Repeatable Read) (0) | 2022.12.03 |
---|---|
[Spring Boot] 스프링부트 API 성공 및 실패에 대한 HTTP 코드 반환(HttpStatus.OK, HttpStatus.INTERNAL_SERVER_ERROR) (0) | 2022.12.03 |
[Spring Boot] 스프링부트 데이터 삭제하기 (Delete) (0) | 2022.11.03 |
[Spring Boot] 스프링부트 Update하기 (영속성 컨텍스트, 더티체킹@Transactional, Entity(엔터티)Unique설정) (0) | 2022.11.03 |
[Spring Boot] 스프링부트 Select 하기 [페이지네이션 (Pagination)] (0) | 2022.11.02 |