JPA를 쉽게 사용하기 위해 스프링에서 제공하는 프레임워크 Main Keyword : Repository 사용자는 인터페이스, 메소드만 정의하면 Spring data가 이름을 분석하여 JPQL 실행 JpaRepository -> CRUD 기능을 제공하는 인터페이스해당 인터페이스를 상속받아 Spring data jpa 사용 public interface productRepository extends JPARepository, productRepositorySupport{ //CRUD Method….} ref : https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#preface 쿼리 메소드 기능 Spring Data는 메소드 이름에 있는 ..