具有自定义注释的字段的 Gson 自定义序列化

Gson custom serialization for fields with custom annotation

class Demo {
  private String name;
  private int total;

   ...
}

当我用gson序列化一个demo的对象时,在正常情况下我会得到这样的东西:

{"name": "hello world", "total": 100}

现在,我有一个注释 @Xyz,可以添加到任何 class 的任何属性。 (我可以应用这个注释的属性可以是任何东西,但现在如果它只是 String 类型应该没问题)

class Demo {
  @Xyz
  private String name;

  private int total;

  ...
}

当我对 class 属性进行注释时,序列化数据应具有以下格式:

{"name": {"value": "hello world", "xyzEnabled": true}, "total": 100}

请注意,无论 class 的类型如何,此注释都可以应用于任何(字符串)字段。如果我能以某种方式在自定义序列化程序 serialize 方法上获得该特定字段的声明注释,那对我来说就可以了。

请指教如何实现。

我认为您打算将 annotation JsonAdapter 与您的自定义行为一起使用

这是一个示例 class Xyz,它扩展了 JsonSerializer、JsonDeserializer

import com.google.gson.*;

import java.lang.reflect.Type;

public class Xyz implements JsonSerializer<String>, JsonDeserializer<String> {

  @Override
  public JsonElement serialize(String element, Type typeOfSrc, JsonSerializationContext context) {
    JsonObject object = new JsonObject();
    object.addProperty("value", element);
    object.addProperty("xyzEnabled", true);
    return object;
  }

  @Override
  public String deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
    return json.getAsString();
  }
}

这是一个示例使用

import com.google.gson.annotations.JsonAdapter;

public class Demo {
  @JsonAdapter(Xyz.class)
  public String name;
  public int total;
}

我写了更多的测试,也许它们会帮助你更多地解决这个问题

import com.google.gson.Gson;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class Custom {
  @Test
  public void serializeTest() {
    //given
    Demo demo = new Demo();
    demo.total = 100;
    demo.name = "hello world";
    //when
    String json = new Gson().toJson(demo);
    //then
    assertEquals("{\"name\":{\"value\":\"hello world\",\"xyzEnabled\":true},\"total\":100}", json);
  }

  @Test
  public void deserializeTest() {
    //given
    String json = "{  \"name\": \"hello world\",  \"total\": 100}";
    //when
    Demo demo = new Gson().fromJson(json, Demo.class);
    //then
    assertEquals("hello world", demo.name);
    assertEquals(100, demo.total);
  }

}