Gson反序列化器仅创建超类

时间:2019-06-28 22:26:07

标签: java json serialization gson

我对Gson解串器有问题,它只会创建超类:/ 例如:

public class Fool{}
public class Fool2 extends Fool{}
public class Object
{
/*
This, when recreated by Gson deserializer will create a class of type Fool 
and not Fool2 :/
*/
private Fool fool = new Fool2();
}

有没有一种方法可以存储变量类型的类路径? 非常感谢;)

0 个答案:

没有答案