提取的所有者不在场

时间:2018-02-22 08:34:03

标签: java hibernate jpa hql

我正在尝试在这里学习hibernate,并遇到了这个类:

HelloWorldClient.java

public class HelloWorldClient {
public static void main(String[] args) {

EntityManagerFactory emf = 
Persistence.createEntityManagerFactory("hello-world");
EntityManager em = emf.createEntityManager();
EntityTransaction txn = em.getTransaction();
try {
txn.begin();
Query query = em.createQuery("select student from Guide guide join fetch 
guide.students student");
List<Student> students = query.getResultList(); 
System.out.println(students);
    txn.commit();           
    } catch (Exception e) {
        if (txn != null) {
            txn.rollback();
        }
        e.printStackTrace();
    } finally {
        if (em != null) {
            em.close();
        }
    }

}
}

执行查询时,我收到错误:

java.lang.IllegalArgumentException: org.hibernate.QueryException: query 
specified join fetching, but the owner of the fetched association was not 
present in the select list [FromElement{explicit,not a collection join,fetch 
join,fetch non-lazy properties,classAlias=student,role=entity.Guide.students,tableName=Student,tabl
eAlias=students1_,origin=Guide guide0_,columns={guide0_.id ,className=entity.Student}}] [select student from entity.Guide guide join fetch 
 guide.students student]at Impl.java:294)
at client.HelloWorldClient.main(HelloWorldClient.java:31)

学生和导游有多对一的关系..

注意:我知道用指南替换选择查询中的学生将解决问题,但我试图找到它为什么不反过来工作。

1 个答案:

答案 0 :(得分:1)

加入fetch在这里没有意义,因为它是一个性能暗示,迫使人们急切加载关系。

这里你实际上是在告诉hibernate:

Guide join Student表中获取所有学生,并确保急切地获取Student实体中Guide的引用。但是你没有Guide实体

如果您希望学生只是从他们的表中选择学生,并且如果您需要与Guide获取的关系,则声明它。

select student from Student student join fetch 
student.guide guide

或者在这种情况下完全删除提取