JDO Google App Engine:如何保留然后查询作为自定义类型父对象的子对象的自定义类型对象列表?
我正在使用 Objectify 尝试保留一些自定义类型对象,然后使用查询检索它们。
我将如何保留然后仅查询 Command 对象?
以下是对象:
public class Command {
@Id private Key key;
public ArrayList<Section> sections;
}
class Section {
@Id private Key key;
public ArrayList<Phrase> phrases;
}
class Phrase {
public String phrase;
public String output;
@Id private Key key;
}
I'm using Objectify to try and persist some custom type Objects and then retrieve them using a query.
How would I persist and then query just the Command objects?
Here are the objects:
public class Command {
@Id private Key key;
public ArrayList<Section> sections;
}
class Section {
@Id private Key key;
public ArrayList<Phrase> phrases;
}
class Phrase {
public String phrase;
public String output;
@Id private Key key;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Objectify 要求,您的对象 (POJO) 中必须有一个 @Id 字段(String、Long 或 long),以便将对象持久保存到数据存储中。请查看下面的链接,了解有关持久化和查询
http://code 的 详细信息.google.com/p/objectify-appengine/wiki/IntroductionToObjectify#Create_Your_Entity_Classes
Objectify requires that, there must be an @Id field (String, Long, or long) in your objects (POJO) in order to persist the object into datastore. check out the link below for detailed info regarding persisting and querying
http://code.google.com/p/objectify-appengine/wiki/IntroductionToObjectify#Create_Your_Entity_Classes