728x90
1. Checked exception & Unchecked Exception
Checked exception | Unchecked Exception |
- 실행 전에 예외 처리 해야함. (컴파일 단계에서 확인됨 - rollback이 되지 않음. - Runtime Exception을 제외한 모든 예외) - IOException, SQLException 등 |
- 명시적 처리를 강제하지 않음(실행 단계에서 확인됨) - rollback 처리됨. - RuntimeException 하위 예외 - NullPointerException, IllegalArgumentException, INdexOutofBoundException, SystemException |
Java 예외(Exception) 처리에 대한 작은 생각 (nextree.co.kr)
Checked Exception을 대하는 자세 - Yun Blog | 기술 블로그 (cheese10yun.github.io)
2. excpetion safe programming
- exception을 최대한 쓰지 않는 방향으로 하자? ( C++, C#)
728x90
'개발 > java,spring,springboot' 카테고리의 다른 글
Spring cloud의 이해 & Spring cloud config 기본 사용 (0) | 2021.12.01 |
---|---|
java 직렬화 (0) | 2021.11.12 |
Apache http request 응용(+Springboot) (0) | 2021.04.22 |
org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported (0) | 2021.04.22 |
spring boot Pbkf2PasswordEncoder 속도 빠르게 하기 (1) | 2021.04.09 |
댓글