0

我搜索了很多。我仍然无法理解如何将字符串分配给Google App Engine实体类 id(Key)。

所以我有:

Key id;

setId(String id) { 
    // I know that here I can use id = KeyFactory.createKey("",""); 
}

但我不知道如何在createKey这里使用方法将我的字符串分配给 id。请将此处的用户视为我的Entity班级名称。

PS我正在使用JPA

谢谢你。

4

1 回答 1

1

不确定您的实体是否正在寻找,但这对我来说效果很好。,

@Entity
class Person{
    @Id String personId; 
    String firstName;
}
于 2013-04-18T21:35:39.427 回答