Spring(5) 예외처리 방법(중복사용 가능)
1. 메서드별로 예외를 처리하는 방법 - try-catch / throws 방법 - 1순위로 적용된다. 2. 하나의 컨트롤러에서 발생하는 예외를 모아서 처리하는 방법 - @ExceptionHandler(메서드 작성) 방법 - 2순위로 적용된다. ex) controller에서 메서드 작성 @ExceptionHandler(Exception.class) public String exceptionHandler(Exception e, Model model) { e.printStackTrace(); model.addAttribute("errorMsg", "서비스 이용중 문제가 발생했습니다."); return "common/errorPage"; } 3. 전역에서 발생하는 예외를 모아서 처리하는 클래스 - @Contr..