0

我有几个实现java.io.Serializable接口的模型类(用于序列化目的),它们在 devmode 和 webmode 下工作得很好,但是当我想在运行测试后在 GWTTestCase 中使用它们时,我得到了这个错误:

Type 'com.saeed.test.model.MyModel' was not assignable to 
'com.google.gwt.user.client.rpc.IsSerializable'
and did not have a custom field serializer.
For security purposes, this type will not be deserialized.

我提到 MyModel 类没有默认构造函数(但在 devmode 和 webmode 中完美运行)。

我该如何解决这个问题?

4

1 回答 1

0

请在此处查看 GWT RPC 的用户测试套件此处的rpc 测试套件

您可能还必须遵循 GWT 如何设置其 RPC 测试。

于 2013-01-10T04:59:28.623 回答