使用GWT内置的RPC序列化/反序列化机制
我正在使用 HTML5 本地存储开发 GWT 离线应用程序。我想使用 com.google.gwt.storage.client.Storage (在版本 2.3 中引入)缓存/存储传输对象。但问题是,目前(版本 2.3)存储只能保存字符串值。
是否有可能从客户端代码使用 GWT 内置的 rpc 序列化/反序列化机制?这样我就能够序列化传输对象并将它们存储在本地存储中,并在需要时检索它们并反序列化内容。
I am developing GWT offline application using HTML5 Local Storage. I would like to cache/store the transfer objects using com.google.gwt.storage.client.Storage (introduced in version 2.3). But the problem is that as for now (version 2.3) the Storage can only save the string values.
Is there any possibility to use GWT's built in rpc serialization/deseralization mechanism from client side code? So that I will be able to serialize transfer objects and store them in Local Storage and retrieve them when needed and deserialize the content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GWT 文档有这样的说法:
编辑:
RequestFactory#getSerializer()
返回ProxySerializer
。但所以你不能用它来序列化任意对象。只有 EntityProxy 对象可以通过这种方式序列化。 GWT 文档没有提到任何对非 EntityProxy 对象执行此类序列化的方法,因此我认为可以安全地假设到目前为止还没有现成的解决方案可以执行此操作。对于非 EntityProxy 对象,GWT 文档(上面引用)建议使用 JSON 序列化。
GWT Docs have this to say:
EDIT:
RequestFactory#getSerializer()
returns an implementation ofProxySerializer
. ButSo you cannot use it to serialize arbitrary objects. Only
EntityProxy
objects can be serialized this way. GWT documentation does not mention any method for doing such serialization for non-EntityProxy
objects, so I think it is safe to assume that there is no ready-made solution for doing this so far. For non-EntityProxy
objects, GWT docs (quoted above) recommend using JSON serialization.