Spring Exception Handling

1. Java Exception 정리


Java Exception 에는 다음과 같은 2개의 Exception이 있다.

Checked Unchecked
예외처리 필수 필수 아님
트랜잭션 롤백 안됨 기본값으로 들어있어서 진행
검증 컴파일 단계 런타임 단계

1.1 Checked Exception

1.2 Unchecked Exception (RuntimeException)