[JPA] Inheritance bulk-id delete
JPA inheritance bulk-id strategies JPA에서 Inheritance를 사용한 경우 batch delete 구현 방법을 다뤄봅니다. Links에 있는 Hibernate post를 보시면 좀더 상세한 글을 확인할 수 있습니다. 깃헙 원문으로 가시면 실제 소스코드도 확인하실 수 있습니다. 테스트 환경 H2 DB MySQL 5.7.24 class 상속 구성 Person 클래스를 상속하는 Doctor, Student가 있습니다. JOINED Inheritance를 사용하였습니다. @Entity(name = "person") @Inheritance(strategy = InheritanceType.JOINED) open class PersonEntity( @Id @GeneratedValue..
JPA(Hibernate)
2022. 2. 14. 02:13