如何将实体数据加载到对象中 - GoogleAppEngine - 低级 API
如何使用 GoogleAppEngine Low Level API 自动将实体 (com.google.appengine.api.datastore.Entity) 读取到对象中?
有没有什么神奇的办法?
How can I automatically read a Entity (com.google.appengine.api.datastore.Entity) into a object using GoogleAppEngine Low Level API?
There is no magic way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
低级 API 不提供实体映射 - 它只是公开一个类似字典的接口。如果您想要映射,则需要使用 JDO、JPA 或第三方库,例如 Objectify< /a>.就我个人而言,我建议 Objectify 作为明显更好的选择。
The Low Level API doesn't provide entity mapping - it just exposes a dict-like interface. If you want mapping, you need to use JDO, JPA, or a third-party library like Objectify. Personally I'd suggest Objectify as the obviously superior choice.