Table per subclass inheritance relationship: How to query against the Parent class without loading any subclass ??? (Hibernate)

后端 未结 3 772
感动是毒
感动是毒 2020-12-05 08:57

Suppose a Table per subclass inheritance relationship which can be described bellow (From wikibooks.org - see here)

Notice Parent class is n

相关标签:
3条回答
  • 2020-12-05 09:25

    Actually, there is a way to get just the superclass, you just need to use the native query from JPA, in my case I'm using JPA Repositories it would be something like that:

    @Query(value = "SELECT * FROM project", nativeQuery = true)
    List<Resource> findAllProject();
    

    The flag nativeQuery as true allow running the native SQL on database.

    If you are using Entity Manager check this out: https://www.thoughts-on-java.org/jpa-native-queries/

    0 讨论(0)
  • 2020-12-05 09:36

    Update: It appears the first option doesn't work as I thought.

    First option:

    Specify the class in the where clause:

    select p from Project p where p.class = Project 
    

    Second option:

    Use explicit polymorphism that you can set using Hibernate's @Entity annotation:

    @javax.persistence.Entity
    @org.hibernate.annotations.Entity(polymorphism = PolymorphismType.EXPLICIT)
    @Inheritance(strategy = InheritanceType.JOINED)
    public class Project {
    
        @Id
        private long id;
        ...
    }
    

    This is what Hibernate Core documentation writes about explicit polymorphism:

    Implicit polymorphism means that instances of the class will be returned by a query that names any superclass or implemented interface or class, and that instances of any subclass of the class will be returned by a query that names the class itself. Explicit polymorphism means that class instances will be returned only by queries that explicitly name that class.

    See also

    • How to get only super class in table-per-subclass strategy?
    0 讨论(0)
  • 2020-12-05 09:43

    A workaround is described below:

    Define your Parent class as MappedSuperClass. Let's suppose the parent class is mapped To PARENT_TABLE

    @MappedSuperClass
    public abstract class AbstractParent implements Serializable {
    
        @Id
        @GeneratedValue
        private long id;
    
        @Column(table="PARENT_TABLE")        
        private String someProperty;
    
        // getter's and setter's
    
    }
    

    For each subclass, extend the AbstractParent class 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 needed

    @Entity
    @SecondaryTable("PARENT_TABLE")
    public class Child extends AbstractParent {
    
        private String childField;
    
        public String getChildProperty() {
            return childField;
        }
    
    }
    

    And define another Entity with the purpose of retrieving just the parent class

    @Entity
    @Table(name="PARENT_TABLE")
    @AttributeOverrides({
        @AttributeOverride(name="someProperty", column=@Column(name="someProperty"))
    })
    public class Parent extends AbstractParent {}
    

    Nothing else. See as shown above i have used just JPA specific annotations

    0 讨论(0)
提交回复
热议问题