我试图在这里学习休眠,并遇到了这一堂课:
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)
学生和导游有多对一的关系。
注意:我知道将select查询中的student替换为guide可以解决此问题,但是我试图找出为什么它无法正常工作的原因。
最佳答案
Join fetch在这里没有意义,因为它是一种性能提示,迫使人们迫切希望加载该关系。
在这里,您实际上是在告诉休眠:
从Guide join Student
表中获取所有学生,并确保渴望在Student
实体中获取对Guide
的引用。但是您没有Guide
实体
如果您想让学生从表中选择学生,并且如果需要与Guide
的关系,请声明它。
select student from Student student join fetch
student.guide guide
或在这种情况下完全删除抓取