WEB 158

실전! Spring Data JPA 4,5 (스프링 데이터 JPA 분석, 나머지 기능들)

@Repository @Transactional(readOnly = true) public class SimpleJpaRepository implements JpaRepositoryImplementation 실제 구현체가 들어있는 클래스이다. @Repository 1. Component Scan 의 대상이 되어 Spring Container 에 올라감 2. JDBC, JPA Exception 이 터질때 이것들을 Spring Exception 으로 바꿔서줌 Spring data jpa 에서의 save는 @Transactional @Override public S save(S entity) { Assert.notNull(entity, "Entity must not be null."); if (entityIn..

WEB/JPA 2021.04.14