1

我正在玩flexjsonGoogle 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?这是什么意思?

4

0 回答 0