我已尝试按照http://eclipse.org/eclipselink/documentation/2.4/jpa/extensions/a_fetchgroup.htm中的说明让源代码运行
@FetchGroup(name="names",
attributes={
@FetchAttribute(name="firstName"),
@FetchAttribute(name="lastName")
})
TypedQuery query = em.createQuery("SELECT e FROM Employee e", Employee.class);
query.setHint(QueryHints.FETCH_GROUP_NAME, "names");
可悲的是,它以“需要实现 FetchGroupTracker”而告终。
我不知道这是真的还是我错过了什么。有人知道我在哪里可以找到它的样品吗?