Jakarta Persistence (JPA) Annotation Type

jakarta.persistence.Inheritance

Implemented Interfaces:
Annotation
Target:
Type

Specifies the inheritance mapping strategy for the entity class hierarchy which descends from the annotated entity class.

This annotation must be applied to the entity class that is the root of the entity class hierarchy. If the Inheritance annotation is not specified, or if no inheritance type is specified for an entity class hierarchy, the SINGLE_TABLE mapping strategy is used.

Example:

 @Entity
 @Inheritance(strategy = JOINED)
 public class Customer { ... }

 @Entity
 public class ValuedCustomer extends Customer { ... }
See Also:
Since:
Jakarta Persistence (JPA) 1.0

Annotation Elements

The inheritance mapping strategy for the entity inheritance hierarchy.
Default:
InheritanceType.SINGLE_TABLE
Since:
Jakarta Persistence (JPA) 1.0

Additional JDK methods inherited from java.lang.annotation.Annotation

annotationType(), equals(Object), hashCode(), toString()