Java ORM 표준 JPA 프로그래밍 -김영한
데이터베이스에는 다음과 같은 테이블 상속관계가 존재한다.
Entity 클래스는 부모클래스가 Entity 이거나, @MappedSuperclass
어노테이션이 달린 클래스여야 상속받을 수 있다.
JPA 에서는 다음과 같이 상속관계를 구현하기 위한 어노테이션을 지원한다.
@Inheritance
@DiscriminatorColumn
@DiscriminatorValue
JPA에서는 @Inheritance
의 strategy 속성으로 상속관계 전략을 설정할 수 있다.