使用使用 GSON 反序列化的父对象中的参数实例化子对象并使用泛型?

2022-09-04 04:39:04

我大致有以下结构

class MyDeserialParent<T extends MyChildInterface> {

     MyChildInterface mSerialChild;
     ... //some other fields (not 'type')

}

但它是从混乱的JSON结构反序列化的,子节点的两个属性在父节点上返回,如下所示。

{
    "myDeserialParents" : [
        {
            ... //some parent properties
            "type": "value", //used in a TypeAdapter to choose child implementation
            "childProp1": "1",
            "childProp2": "2",
         },
         ... //more in this list
     ]
}

显然,这阻止了我只是注释mSerialChild,并让一个作品发挥其魔力。因此,我希望做的是,当被 deseriized 使用“type”来找到正确的具体类,并使用和作为构造函数的参数来制作一个新的类。我不知道该怎么做。SerializedNameTypeAdapterMyDeserialParentMyChildInterfacechildProp1childProp2

我可以想象使用()for和in获取类型字段(以及两个子属性),然后为自己实例化正确的具体。TypeAdapterJsonDeserializerMyDeserialParentdeserializeMyChildInterface

这意味着我必须创建我的类(with )并调用带有实例的 setter。这感觉不对劲,好像我错过了什么。有没有更好的方法?MyDeserialParentcontext.deserialize(json, MyDeserialParent.class)MyChildInterface

如果我也手动创建父对象,是否还有一种方法可以指定泛型( on )?还是类型擦除意味着没有办法做到这一点?(这个问题不太重要,因为我知道如果我使用MyDeserialParent的特定子类型,我可以获得类型安全,这已经推断出来了,但我想避免它)TMyDeserialParentT


答案 1

您显然需要自定义。但棘手的部分是:TypeAdapter

  • 您的父类是泛型类
  • mSerialChild不是类型 ,而是类型TMyChildInterface
  • 我们希望避免手动解析每个子类的json,并且能够向父类添加属性,而无需修改整个代码。

牢记这一点,我最终得到了以下解决方案。

public class MyParentAdapter implements JsonDeserializer<MyDeserialParent>{

    private static Gson gson = new GsonBuilder().create();
    // here is the trick: keep a map between "type" and the typetoken of the actual child class
    private static final Map<String, Type> CHILDREN_TO_TYPETOKEN;

    static{
        // initialize the mapping once
        CHILDREN_TO_TYPETOKEN = new TreeMap<>();
        CHILDREN_TO_TYPETOKEN.put( "value", new TypeToken<MyChild1>(){}.getType() );
    }


    @Override
    public MyDeserialParent deserialize( JsonElement json, Type t, JsonDeserializationContext
            jsonDeserializationContext ) throws JsonParseException{
        try{
            // first, get the parent
            MyDeserialParent parent = gson.fromJson( json, MyDeserialParent.class );
            // get the child using the type parameter
            String type = ((JsonObject)json).get( "type" ).getAsString();
            parent.mSerialChild = gson.fromJson( json, CHILDREN_TO_TYPETOKEN.get( type ) );
            return parent;

        }catch( Exception e ){
            e.printStackTrace();
        }
        return null;
    }
}

言论:

  • 自定义适配器必须在 gsonBuilder 上注册
  • 如果你需要为你的孩子一些自定义gson属性,你可以在 的构造函数中传递对象,因为现在它使用默认的;GsonMyParentAdapter
  • 子项和父项必须具有具有不同名称的属性;
  • 每个新类型都必须使用相应的类添加到地图中。

完整示例

主要:

public class DeserializeExample{

    MyDeserialParent[] myDeserialParents;

    static String json = "{\n" +
            "    \"myDeserialParents\" : [\n" +
            "        {\n" +
            "            \"otherProp\": \"lala\"," +
            "            \"type\": \"value\", //used in a TypeAdapter to choose child implementation\n" +
            "            \"childProp1\": \"1\",\n" +
            "            \"childProp2\": \"2\"\n" +
            "         }\n" +
            "     ]\n" +
            "}";


    public static void main( String[] args ){
        Gson gson = new GsonBuilder().registerTypeAdapter( MyDeserialParent.class, new MyParentAdapter() ).create();
        DeserializeExample result = gson.fromJson( json, DeserializeExample.class );
        System.out.println( gson.toJson( result ));
        // output: 
        // {"myDeserialParents":[{"mSerialChild":{"childProp1":"1","childProp2":"2"},"otherProp":"lala"}]}
    }//end main

}//end class

父母:

class MyDeserialParent<T extends MyChildInterface>{

    MyChildInterface mSerialChild;
    //some other fields (not 'type')
    String otherProp;
}

孩子:

public class MyChild1 implements MyChildInterface {
    String childProp1;
    String childProp2;
}//end class

答案 2

推荐