프로그래밍/spring boot

[JPA] Hibernate

aSpring 2021. 6. 3. 14:07
728x90
728x90

JPA -> 기본적으로 Hibernate를 구현체로 사용함

Spring Data JPA 이용 -> Repository를 통해 interface만 정의해 놓으면 구현체들이 알아서 처리를 함

 

JPA <- Hibernate <- Spring Data JPA

 

<구현체>

save()

- 새로운 데이터의 경우 persist 호출

- 기존에 있는 데이터의 경우 merge -> update 처리

728x90
728x90