数据存储区中没有实体

时间:2014-04-02 02:18:37

标签: java google-app-engine google-cloud-datastore

我正在关注本教程:https://cloud.google.com/developers/articles/how-to-build-mobile-app-with-app-engine-backend-tutorial

除非我运行AppEngine项目后没有列出任何实体,否则一切正常。我去检查http://localhost:8888/_ah/admin并且没有列出任何实体。

我只收到以下消息:

  

数据存储区在Empty命名空间中没有实体。您需要以编程方式添加数据,然后才能使用此工具查看和编辑它。

该课程与教程相同:

import java.util.Date;

import com.google.appengine.api.datastore.Key;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Entity
public class CheckIn {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Key key;
    private String placeId;
    private String userEmail;
    private Date checkinDate;

    public Key getKey() {
        return key;
    }

    public String getPlaceId() {
        return placeId;
    }
    public void setPlaceId(String placeId) {
        this.placeId = placeId;
    }

    public String getUserEmail() {
        return userEmail;
    }
    public void setUserEmail(String userEmail) {
        this.userEmail = userEmail;
    }

    public Date getCheckinDate() {
        return checkinDate;
    }
    public void setCheckinDate(Date date) {
        checkinDate = date;
    }
}

我试图搜索可用的解决方案,但我找不到任何有用的东西。你有什么建议我检查一下?谢谢!

0 个答案:

没有答案