====== Springframework Utils ====== * [[http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/util/package-summary.html|Spring Utils]] * [[http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/core/annotation/AnnotationUtils.html|AnnotationUtils]] ===== DataAccessUtils ===== * [[https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/dao/support/DataAccessUtils.html|DataAccessUtils]] * 여러건의 조회 결과를 확인하고 필요한 값만 얻거나 예외를 발생시킨다. * ''singleResult'' : 컬렉션에 값이 1개이면 해당 객체, 없으면 null, 여러건이면 오류 * ''requiredSingleResult'' : 컬렉션에 값이 1개이면 해당 객체, 없거나 여러건이면 오류 * ''uniqueResult'' : 컬렉션의 모든 값이 동일하게 1건이면 해당 객체, 없으면 null, 여러건이면 오류 * ''requiredUniqueResult'' : 컬렉션의 모든 값이 동일하게 1건이면 1건이면 해당 객체, 0 혹은 여러건이면 오류