Suppose a Table per subclass inheritance relationship which can be described bellow (From wikibooks.org – see here)
Notice Parent class is not abstract
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public class Project {
@Id
private long id;
// Other properties
}
@Entity
@Table(name="LARGEPROJECT")
public class LargeProject extends Project {
private BigDecimal budget;
}
@Entity
@Table(name="SMALLPROJECT")
public class SmallProject extends Project {
}
I have a scenario where i just need to retrieve the Parent class. Because of performance issues, What should i do to run a HQL query in order to retrieve the Parent class and just the Parent class without loading any subclass ???
A workaround is described below:
Define your
Parentclass as MappedSuperClass. Let’s suppose the parent class is mapped ToPARENT_TABLEFor each subclass, extend the
AbstractParentclass and define its SecondaryTable. Any persistent field defined in the parent class will be mapped to the table defined by SecondaryTable. And finally, use AttributeOverrides if neededAnd define another Entity with the purpose of retrieving just the parent class
Nothing else. See as shown above i have used just JPA specific annotations