繁体   English   中英

自己加入谷歌应用引擎(java)

[英]self join in google app engine (java)

我修改了 google app engine (java) 附带的留言簿示例,以使用某种“自连接”来包含父子关系。

现在我的 greeting.java 文件看起来像这样

    package guestbook;

import java.util.Date;
import java.util.List;

import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;

import com.google.appengine.api.datastore.Key;
import com.google.appengine.api.users.User;

@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Greeting {
    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    private Key id;

    @Persistent
    private User author;

    @Persistent
    private String content;

    @Persistent
    private Date date;

    @Persistent
    private Greeting parent;

    @Persistent(mappedBy="parent")
    private List<Greeting> children;

    public Greeting getParent() {
        return parent;
    }

    public void setParent(Greeting parent) {
        this.parent = parent;
    }

    public List<Greeting> getChildren() {
        return children;
    }

    public void setChildren(List<Greeting> children) {
        this.children = children;
    }

    public Greeting(User author, String content, Date date) {
        this.author = author;
        this.content = content;
        this.date = date;
    }

    public Key getId() {
        return id;
    }

    public User getAuthor() {
        return author;
    }

    public String getContent() {
        return content;
    }

    public Date getDate() {
        return date;
    }

    public void setAuthor(User author) {
        this.author = author;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public void setDate(Date date) {
        this.date = date;
    }
}

注意父字段和子字段的添加,并将主键类型更改为 com.google.appengine.api.datastore.Key(如http://code.google.com/appengine/docs/java/datastore/所示relationships.html#Owned_One_to_Many_Relationships

现在它不会将数据保存到数据存储区。 我不明白为什么。 我试过删除本地数据存储和索引文件(如网上某处所说),但它不起作用。 没有例外,没有。

有人可以调查一下,请帮忙

事实证明这是 Google App Engine 中的一个已知问题

http://code.google.com/p/datanucleus-appengine/issues/detail?id=119

现在我需要更改我的数据模型以使用 App Engine

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM