JPA 和 Android
我计划使用 Google App Engine 与 Android 应用程序进行通信。我计划使用 Objectify,它使用 JPA 注释,并使用内置的 XML 库序列化它们。如果我想在两端使用相同的对象,我应该如何处理注释(例如@Id等)?
谢谢, 乔恩
I plan on using Google App Engine to communicate with an Android App. I am planning on using Objectify, which uses JPA annotations, and serialize them using the built in XML libraries. If I wanted to use the same object on both ends, what should I do about the annotations (such as @Id, etc)?
Thanks,
Jon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从版本 4 开始,Objectify 不再使用 JPA/JDO 注释。
不好的是默认的 Objectify 发行版中不提供仅注释的 jar。您需要检查其源代码并构建“client-jar”nant 目标并将其放入 Android 应用程序中。
Starting from version 4 Objectify no longer uses JPA/JDO annotations.
Bad thing is that annotation only jar is not supplied in default Objectify distribution. You'd need to check out its sources and build "client-jar" nant target that you'd put into your Android application.