在持久化类中通过注解设定的检索策略是固定的,要么为延迟检索,要么为立即检索。但应用逻辑是多种多样的,有些情况下需要延迟检索,而有些情况下需要立即检索。
Hibernate允许在应用程序中覆盖持久化类中设定的检索策略,由应用程序在运行时决定检索对象图的深度。
以下代码两次调用Query的getResultList()方法,都用于检索OID为1的Customer对象:
//第一个Query.getResultList()方法 entityManager .createQuery("from Customer as c where c.id=1",Customer.class) .getResultList(); //第二个Query.getResultList()方法 entityManager .createQuery("from Customer as c" +" left join fetch c.orders where c.id=1",Customer.class) .getResultList();
假定在Customer类中,对orders集合属性采用延迟检索策略。在执行第一个Query.getResultList()方法时,将使用Customer类中设置的检索策略。在执行第二个Query.getResultList()方法时,在JPQL语句中显式指定左外连接检索关联的Order对象,因此会覆盖Customer类中设置的检索策略,Hibernate会执行以下select语句:
select * from CUSTOMERS left outer join ORDERS on CUSTOMERS.ID =ORDERS.CUSTOMER_ID where CUSTOMERS.ID=1; 以上查询语句会立即检索Customer对象,以及和它关联的所有Order对象。