向实时 JDO 类添加持久属性。 (应用程序引擎)
如何向作为 JDO 存储在 App Engine 上的类添加新的 @Persistent
属性(类似于向关系型实时数据库表添加新列)?当我添加新属性时,出现异常:
java.lang.RuntimeException: com.google.gwt.user.client.rpc.InknownRemoteServiceException: 响应无法反序列化
How can I add a new @Persistent
attribute to a class that gets stored on App Engine as JDO (Similar to adding a new column to a relational live database table)? When I add a new attribute I get the exception:
java.lang.RuntimeException:
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: The
response could not be deserialized
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在现有持久性实体中添加新属性(列)在 GAE 上不是问题。我也经常使用 JDO。当然,现有实体不会有新的属性集。
问题一定出在数据存储访问层之上的层中。
Adding new property (column) into existing persistent entity is not a problem on GAE. I'm also using JDO and do that quite often. Existing entities won't have new property set of course.
The problem must be in the layers above the datastore access layer.