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