Spring은 다양한 데이터 접근 기술을 일관된 방식으로 사용할 수 있도록 도와줍니다 1. Consistent Exception Hierarchy각 기술별로 발생하는 예외들을 Spring의 예외 계층인 DataAccessException으로 통일기술원래 예외변환된 예외 (Spring)JDBCSQLExceptionDataAccessException (예: CannotGetJdbcConnectionException, BadSqlGrammarException)JPA (Hibernate 포함)PersistenceExceptionDataAccessException (예: JpaSystemException, DataIntegrityViolationException)MyBatisPersistenceExceptionD..