谷歌应用程序引擎中的 JDO 除了类型“Key”之外的 PrimaryKey钥匙可以吗?
为什么不能定义另一个键 @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) 私钥密钥; ?
如果我尝试定义一个@PrimaryKey,例如一个整数,我会收到服务器错误... http://code.google.com/ intl/de-DE/appengine/docs/java/datastore/dataclasses.html
why isn't it possible to define another key than
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;
?
If i try to define a @PrimaryKey as say, an Integer I get an Server Error...
http://code.google.com/intl/de-DE/appengine/docs/java/datastore/dataclasses.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 Long
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
私人长ID;
或字符串
@PrimaryKey
私有字符串名称;
请参阅 http://code.google.com/appengine/docs/java /datastore/creatinggettinganddeletingdata.html
Yes, you can use a Long
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;
or a String
@PrimaryKey
private String name;
See http://code.google.com/appengine/docs/java/datastore/creatinggettinganddeletingdata.html