我正在尝试加载User的完整对象图,其中包含一个 甲板的集合,然后包含一组卡片,如 这样: 用户:
@PersistenceCapable(detachable = "true")
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)
@FetchGroup(name = "decks", members = { @Persistent(name =
"_Decks") })
public abstract class User {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
protected Key _ID;
@Persistent
protected String _UniqueIdentifier;
@Persistent(mappedBy = "_Owner")
@Element(dependent = "true")
protected Set<Deck> _Decks;
protected User()
{
}
}
每个Deck都有一系列卡片,如下:
@PersistenceCapable(detachable = "true")
@FetchGroup(name = "cards", members = { @Persistent(name =
"_Cards") })
public class Deck {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key _ID;
@Persistent
String _Name;
@Persistent(mappedBy = "_Parent")
@Element(dependent = "true")
private Set<Card> _Cards = new HashSet<Card>();
@Persistent
private Set<String> _Tags = new HashSet<String>();
@Persistent
private User _Owner;
}
最后,每张卡片:
@PersistenceCapable
public class Card {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key _ID;
@Persistent
private Text _Question;
@Persistent
private Text _Answer;
@Persistent
private Deck _Parent;
}
我正在尝试检索然后分离整个对象图。一世 可以在调试器中看到它加载正常,但是当我到达时 分离,我不能做任何超出User对象加载的东西。 (没有 甲板,没有卡)。起初我没有简单地尝试交易 在分离之前“触摸”附加对象上的所有字段,但是 这没有帮助。然后我尝试将所有内容添加到默认的提取 小组,但这只是产生了关于GAE不支持的警告 连接。我尝试将获取计划的最大提取深度设置为-1,但是 没有做到这一点。最后,我尝试使用FetchGroups,你可以看到 上面,然后使用以下代码检索:
PersistenceManager pm = _pmf.getPersistenceManager();
pm.setDetachAllOnCommit(true);
pm.getFetchPlan().setGroup("decks");
pm.getFetchPlan().setGroup("cards");
Transaction tx = pm.currentTransaction();
Query query = null;
try {
tx.begin();
query = pm.newQuery(GoogleAccountsUser.class); //Subclass of User
query.setFilter("_UniqueIdentifier == TheUser");
query.declareParameters("String TheUser");
List<User> results = (List<User>)query.execute(ID); //ID = Supplied
parameter
//TODO: Test for more than one result and throw
if(results.size() == 0)
{
tx.commit();
return null;
}
else
{
User usr = (User)results.get(0);
//usr = pm.detachCopy(usr);
tx.commit();
return usr;
}
} finally {
query.closeAll();
if (tx.isActive())
{
tx.rollback();
}
pm.close();
}
这也行不通,我的想法已经不多了......
答案 0 :(得分:1)
我确信读取日志(调试级别)会告诉你更多,因为它肯定会告诉你什么时候分离。也许GAE / J不尊重分离时的延迟加载? DataNucleus本身与所有其他数据存储区一起工作正常。
为什么在覆盖所有现有组时调用FetchPlan.setGroup()? addGroup()对我来说更有意义。