4.1 JPA를 이용한 리포지터리 구현

4.1.1 모듈 위치

4.1.2 리포지터리 기본 기능 구현

4.2 스프링 데이터 JPA를 이용한 리포지터리 구현

@Entity
public class Order {
	@Id @GeneratedValue
  private Long id;
}

public class OrderRepository extends JpaRepository<Order, Long>{
}

스프링 데이터 JPA는 OrderRepository를 리포지터리로 인식해서 알맞게 구현한 객체를 스프링 빈으로 등록한다.

4.3 매핑 구현

4.3.1 엔티티와 밸류 기본 매핑 구현

4.3.2 기본 생성자