본문 바로가기
Spring/JPA

JPA Repository

by y.j 2022. 6. 5.
728x90

JPA Repository란?

데이터를 crud할 수 있도록 기본적인 interface를 제공한다.

JPA 구조

JPA 다이어그램 구조

Repository<T, ID>

 @Indexed 어노테이션만 있는 interface이다. Repository를 상속받은 class나 interface에 indexing을 해준다.

 

CrudRepository<T, ID>

 기본적인 crud에 관련된 메서드들이 정의되어 있는 interface이다.

 

PagingAndSortingRepository<T, ID>

 Crud에 Page와 Sort기능을 추가한 interface이다. 

 

JpaRepository<T, ID>

 상위 Interface의 모든 기능을 포함한다.

 

 

 

728x90

'Spring > JPA' 카테고리의 다른 글

Entity의 기본속성  (0) 2022.06.05
Entity  (0) 2022.05.29
JPA Programming  (0) 2022.05.01

댓글