简体   繁体   中英

Recursive Type-Adapter GSON

Given the following structure:

abstract class Message {
   Message anotherMessage;
   String attribute; //just random stuff
}

I would like to have the following json-string as output:

 {type=Class.getSimpleName(), data=gson(Message)} 

as Message is abstract and can have multiple implementations. The problem is, that "anotherMessage" wouldn't have the structure type,data.

My implementation of serialize:

public JsonElement serialize(final Message src, final Type typeOfSrc,
    final JsonSerializationContext context) {
  Gson gson = new Gson();
  JsonObject elem = new JsonObject();
  elem.addProperty("type", src != null ? src.getClass().getSimpleName() : null);
  elem.addProperty("data", src != null ? gson.toJson(src) : null);
  return elem;
}

How can I do this recursively? I cannot get a Gson-Object with already attached message adapter (stackoverflow-exception)

It's possible to use the JsonSerializationContext/JsonDeserializationContext during the serialization/deserialization to serialize/deserialize another object.

Message.java

abstract class Message {
    Message anotherMessage;
    String theMessage;

    public Message getAnotherMessage() {
        return anotherMessage;
    }

    public String getTheMessage() {
        return theMessage;
    }
}

Info.java

public class InfoMessage extends Message {
    public InfoMessage(Message anotherMessage, String theMessage) {
        this.anotherMessage = anotherMessage;
        this.theMessage = theMessage;
    }
}

Alert.java

public class AlertMessage extends Message {
    public AlertMessage(Message anotherMessage, String theMessage) {
        this.anotherMessage = anotherMessage;
        this.theMessage = theMessage;
    }
}

ErrorMessage.java

public class ErrorMessage extends Message {
    public ErrorMessage(Message anotherMessage, String theMessage) {
        this.anotherMessage = anotherMessage;
        this.theMessage = theMessage;
    }
}

MessageSerializer.java

public JsonElement serialize(Message src, Type typeOfSrc, JsonSerializationContext context) {
    JsonObject elem = new JsonObject();

    if (src == null) {

    } else {
        elem.addProperty("type", src.getClass().getSimpleName());
        elem.addProperty("attribute", src.getTheMessage());
        elem.add("data", src.anotherMessage != null ? context.serialize(src.anotherMessage, Message.class): null);
    }

    return elem;
}

Test.java

public static void main(String[] args) {
        Gson gson = new GsonBuilder()
                            .registerTypeAdapter(Message.class, new MessageSerializer())
                            .setPrettyPrinting()
                            .create();

        String json = gson.toJson(
                            new InfoMessage(
                                    new AlertMessage(
                                            new ErrorMessage(null, "the error message"),
                                            "the alert message"), 
                                    "the info message"), 
                            Message.class);
        System.out.println(json);

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM