Google App Engine 中的 JDO:无主一对多关系中的键顺序

发布于 2024-10-10 16:46:01 字数 1050 浏览 1 评论 0原文

我正在 Google App Engine 中使用 JDO 实现 Web 应用程序。

根据文档,在拥有的一对一中-许多关系,“所有者”对象集合中元素的顺序由自动创建的索引字段或显式排序子句中给出的信息确定。例如:

@PersistenceCapable
public class Person {

    // ...

    @Order(extensions = @Extension(vendorName="datanucleus", key="list-ordering", value="country asc, city asc"))
    private List<ContactInfo> contacts = new List<ContactInfo>();

在无主关系中,“所有者”对象包含“嵌套”对象的键的集合,例如:

@PersistenceCapable
public class Author {

    // ...

    @Persistent
    private List<Key> books;

如果我使用 List,是否保留键的顺序? “所有者”对象中的集合用于存储“嵌套”元素的键?

我在 JDO 关系中都找不到答案文章,也不是数据类文章 :(

I'm implementing web application with JDO in Google App Engine.

According to documentation, in owned one-to-many relationships, order of elements in "owner" object collection is determined either by automatically created index field, or by information given in explicit ordering clause. For example:

@PersistenceCapable
public class Person {

    // ...

    @Order(extensions = @Extension(vendorName="datanucleus", key="list-ordering", value="country asc, city asc"))
    private List<ContactInfo> contacts = new List<ContactInfo>();

In unowned relationships, "owner" object contains collection of keys of "nested" objects, for example:

@PersistenceCapable
public class Author {

    // ...

    @Persistent
    private List<Key> books;

Is order of keys preserved, if I use List<Key> collection in "owner" object for storing keys of "nested" elements?

I could not find answer neither in JDO relationships article, nor in Data Classes article :(

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

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

发布评论

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

评论(1

眸中客 2024-10-17 16:46:01

一般来说,List的顺序会被保留,包括List

Ordering of Lists in general is preserved, List<Key> included.

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