GSON运行时异常为参数化列表注册InstanceCreator

时间:2018-08-22 11:26:00

标签: serialization gson deserialization

我将通配符类型用于列表。

List<? extends txn> 

其中txn是接口。我已经使用了gson typetoken作为

new TypeToken<List<? extends txn>>() {}.getType()

反序列化包含此列表的对象时,出现异常

Unable to invoke no-args constructor for ? extends txn. Register an InstanceCreator with Gson for this type may fix this problem.

我可以为通配符参数实现实例创建者吗?

0 个答案:

没有答案