我有几个实现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 中完美运行)。
我该如何解决这个问题?