web-dev-qa-db-ja.com

GSON-特定の場合のカスタムシリアライザー

私はこのスキーマを持っています:

public class Student {
       public String name;
       public School school;
}

public class School {
       public int id;
       public String name;
}
public class Data {
      public ArrayList<Student> students;
      public ArrayList<School> schools;
}

GsonでDataオブジェクトをシリアル化して、次のようなものを取得したいと思います。

{ "students": [{ 
                 "name":"name1",
                 "school": "1"          //the id of the scool, not its entire Json
              }],
  "school": [{                        //the entire JSON
              "id" : "1",
              "name": "schoolName"
            }]
}

これを行うには、Gsonが学校のIDのみを出力するように、学生の部分にカスタムシリアライザーを使用する必要があります。しかし、学校にとっては、通常のシリアライザが必要です。

1つのGsonオブジェクトだけですべてを実行するにはどうすればよいですか?

33

次のようなカスタムシリアライザーを作成できます。

public class StudentAdapter implements JsonSerializer<Student> {

 @Override
 public JsonElement serialize(Student src, Type typeOfSrc,
            JsonSerializationContext context) {

        JsonObject obj = new JsonObject();
        obj.addProperty("name", src.name);
        obj.addProperty("school", src.school.id);

        return obj;
    }
}
46
Jonas

もちろん、このオブジェクトをシリアル化する場所はどこでも、次のようにGsonに追加する必要があります。

Gson gson = new GsonBuilder()
    .registerTypeAdapter(Student.class, new StudentAdapter())
    .create();
return gson.toJson([YOUR_OBJECT_TO_BE_SERIALIZED]);
29
jobbert