如何在 Java 中使用 Google App Engine 数据存储区中的列表属性?

发布于 2024-11-03 08:50:41 字数 215 浏览 4 评论 0原文

要放置在数据存储中的对象将具有一组标签。

public class Model 
{
    List<String> tagList
    ...
}

在 Python 中,Google App Engine 有列表属性的概念。 Java 中的等效概念是什么(如果存在)以及如何在 Java、JPA 和/或 JDO 中使用列表属性?

An object to be placed in the datastore will have a set of tags.

public class Model 
{
    List<String> tagList
    ...
}

In Python, the Google App Engine has the notion of list properties. What is the equivalent notion in Java (if it exists) and how would you use list properties in Java, in JPA and/or in JDO?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

平安喜乐 2024-11-10 08:50:41

请参阅我的博客文章:带有关系的高效关键字搜索为 Google 数据存储区建立索引实体和 Objectify。它讨论了使用关系索引实体和 Objectify 来实现列表属性的搜索。

总结一下:

  Query<DocumentKeywords> query = ofy.query(DocumentKeywords.class);
  for (String keyword : keywords) {
    query = query.filter("keywords", keyword);
  }

  Set<Key<Document>> keys = query.<Document>fetchParentKeys();

  Collection<Document> documents = ofy.get(keys).values();

其中 DocumentKeywords 包含其 Document 实体的所有关键字的列表属性(集合),而 Document 实体是 的父级>文档关键字

See my blog post exactly on this: Efficient Keyword Search with Relation Index Entities and Objectify for Google Datastore. It talks about implementing search with list properties using Relation Index Entities and Objectify.

To summarize:

  Query<DocumentKeywords> query = ofy.query(DocumentKeywords.class);
  for (String keyword : keywords) {
    query = query.filter("keywords", keyword);
  }

  Set<Key<Document>> keys = query.<Document>fetchParentKeys();

  Collection<Document> documents = ofy.get(keys).values();

where DocumentKeywords contains a list property (collection) of all keywords for its Document entity, and Document entity is a parent for DocumentKeywords.

末骤雨初歇 2024-11-10 08:50:41

JDO 中使用

@Persistent
private List<ContactInfo> contactInfoSets;

In JDO use

@Persistent
private List<ContactInfo> contactInfoSets;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文