我不能让 @FetchProfile 与 HQL 一起工作。
我成功地将它与(旧)本机 Criteria 和 session.get() API 一起使用,但没有与 HQL 一起使用。
正常吗?
感谢我的映射和 FetchProfile 定义
@FetchProfiles({ @FetchProfile( name = "countryCities",
fetchOverrides = { @FetchOverride(entity = Country.class,
association = "cities", mode = FetchMode.JOIN) }) })
public class Country implements java.io.Serializable {
@Id
private long id;
@Version
private int version;
private String country;
@OneToMany(mappedBy = "country")
private Set<City> cities = new HashSet<City>(0);
}
以下不起作用:
@Override
public List<Country> findAllFetchProfileCities() {
getSession().enableFetchProfile("countryCities");
boolean enabled = getSession().isFetchProfileEnabled("countryCities");
List<Country> list = getSession().createQuery("from Country").list();
enabled = getSession().isFetchProfileEnabled("countryCities");
return list;
}
以下工作正常:
@Override
public Country findOneFetchProfileCities(Long _id) {
getSession().enableFetchProfile("countryCities");
Country c = (Country) getSession().get(Country.class, _id);
return c;
}
@Override
public List<Country> findAllCriteriaFetchProfileCities() {
getSession().enableFetchProfile("countryCities");
return getSession().createCriteria(Country.class).list();
}