我正在玩flexjson
和Google Cloud Endpoints
。我需要序列化的模型是:
public class SampleModel {
Long id;
DateTime createdAt;
String message;
OtherModel other;
}
我刚刚创建是DateTimeObjectFactory
为了找到一种创建DateTime
对象的方法(缺少无 arg 构造函数)。OtherModel
现在我对和也有疑问SampleModel
。
我想序列化其实是List
一个SampleModel
. 所以这是我的代码:
List<SampleModel> sampleList = new ArrayList<SampleModel>();
// ...
// adding some items to sampleList
// ...
String s = new JSONSerializer().deepSerialize(sampleList);
我deepSerialize
现在想避免一些未序列化的字段,但只是现在。
当我想反序列化时s
,我会这样做:
sampleList = new JSONDeserializer<List<SampleModel>>()
.use("other", OtherModel.class)
.use(DateTime.class, new DateTimeObjectFactory())
.deserialize(s);
我认为在那种反序列化中一切都很好,因为我可以在日志中看到反序列化对象。但事实上,当我想从那个新项目中获取项目时,sampleList
我得到一个错误:
java.lang.ClassCastException: java.util.HashMap cannot be cast to com.test.games.testapi.model.SampleModel
如果我有很好的理解,每个不平凡的对象都会被反序列化,就Map
好像我没有将正确的类指向反序列化器一样。所以这个错误意味着脚本不知道SampleModel
?这是什么意思?