SerializationException

SerializationException

本文介绍了GWT - 偶尔会出现com.google.gwt.user.client.rpc.SerializationException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

偶尔会遇到以下例外情况:

应用程序通常运行良好。指定的类实现了Serializable(整个对象图)。

到目前为止,唯一的模式/观察值是:


  • 我们似乎只有在iframe中使用应用程序时才会遇到问题


  • 已经部署了新版本的应用程序。

  • 在隐私模式下运行firefox(禁用所有缓存等)并不能解决问题。

    / li>



有什么想法?


解决方案

您是否检查过
文章说:
它有一个默认值(零参数)构造函数与任何访问修饰符(例如私人Foo(){} 将工作)

zeroargument const。当我制作一个可序列化的对象时:D

we are haunted by occasional occurences of exceptions such as:

The application is normally running fine. The indicated class implements Serializable (the whole object graph).

So far the only patterns / observations are:

  • we seem to have the issue only when the application is used inside an iframe

  • the problem seems to happen when a new version of the application has been deployed

  • running firefox in privacy mode (disabling all caches etc.) doesn't fix the problem

Any ideas?

Holger

解决方案

did you check http://code.google.com/webtoolkit/doc/latest/tutorial/RPC.html#serializethe article says:It has a default (zero argument) constructor with any access modifier (e.g. private Foo(){} will work)

I'm allways forgetting zeroargument const. when I am making a serializable object :D

这篇关于GWT - 偶尔会出现com.google.gwt.user.client.rpc.SerializationException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 09:09