I have never done much with serialization, but am trying to use Google's gson to serialize a Java object to a file. Here is an example of my issue:

public interface Animal {
    public String getName();
}


 public class Cat implements Animal {

    private String mName = "Cat";
    private String mHabbit = "Playing with yarn";

    public String getName() {
        return mName;
    }

    public void setName(String pName) {
        mName = pName;
    }

    public String getHabbit() {
        return mHabbit;
    }

    public void setHabbit(String pHabbit) {
        mHabbit = pHabbit;
    }

}

public class Exhibit {

    private String mDescription;
    private Animal mAnimal;

    public Exhibit() {
        mDescription = "This is a public exhibit.";
    }

    public String getDescription() {
        return mDescription;
    }

    public void setDescription(String pDescription) {
        mDescription = pDescription;
    }

    public Animal getAnimal() {
        return mAnimal;
    }

    public void setAnimal(Animal pAnimal) {
        mAnimal = pAnimal;
    }

}

public class GsonTest {

public static void main(String[] argv) {
    Exhibit exhibit = new Exhibit();
    exhibit.setAnimal(new Cat());
    Gson gson = new Gson();
    String jsonString = gson.toJson(exhibit);
    System.out.println(jsonString);
    Exhibit deserializedExhibit = gson.fromJson(jsonString, Exhibit.class);
    System.out.println(deserializedExhibit);
}
}

So this serializes nicely -- but understandably drops the type information on the Animal:

{"mDescription":"This is a public exhibit.","mAnimal":{"mName":"Cat","mHabbit":"Playing with yarn"}}

This causes real problems for deserialization, though:

Exception in thread "main" java.lang.RuntimeException: No-args constructor for interface com.atg.lp.gson.Animal does not exist. Register an InstanceCreator with Gson for this type to fix this problem.

I get why this is happening, but am having trouble figuring out the proper pattern for dealing with this. I did look in the guide but it didn't address this directly.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Put the animal as transient, it will then not be serialized.

Or you can serialize it yourself by implementing defaultWriteObject(...) and defaultReadObject(...) (I think thats what they where called...)

EDIT See the part about Writing an Instance Creator here http://sites.google.com/site/gson/gson-user-guide

Gson cant deserialize an interface since it doesnt know which implementing class will be used, so you need to provide an instance creator for your Animal and set a default or similar.

link|improve this answer
I do want Animal to be serialized / deserialized. Could you be more specific about those Write and Read methods? Thanks. – Ben Flynn Jan 25 '11 at 15:39
Sorry I was thinking of the standard serializer methods to override. I see gson has google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/… which you can try, you can override the default deserializationw it it. – Antonioo Jan 25 '11 at 16:53
I think I need more than a deserializer because the Animal isn't being serialized with any type information. Suppose the type information were there, who would take up the responsibility for deserializing the implementing classes? – Ben Flynn Jan 25 '11 at 17:55
I am not sure. Serializing works since you pass it in an actual class, Cat, but deserialization fails since the Exhibition class only has an Animal, gson doesnt know which implementing class to revive. You could implement the JsonDeserializer for Animal, where you could provide your own logic to make either a Cat or Dog or something else. That solution is not very beautiful, but it does hint that you should only serialize pure data classes, not classes involved in inheritance and polymorphism. – Antonioo Jan 26 '11 at 9:06
1  
Yes I ended up basically doing that -- having the serialized for Exhibition extract the class implementing Animal, serializing the class name, then calling the appropriate serializer on that class to serialize the data. When I deserialize I then use reflection to instantiate the appropriate deserializer. I'm pretty convinced I made it more complicated than it needs to be, but on the other hand, it works. =) – Ben Flynn Mar 7 '11 at 15:55
show 1 more comment
feedback

Here is a generic solution that works for all cases where only interface is known statically.

  1. Create serialiser/deserialiser:

    class InterfaceAdapter<T> implements JsonSerializer<T>, JsonDeserializer<T> {
        public JsonElement serialize(T object, Type interfaceType, JsonSerializationContext context) {
            final JsonObject wrapper = new JsonObject();
            wrapper.addProperty("type", object.getClass().getName());
            wrapper.add("data", context.serialize(object));
            return wrapper;
        }
    
        public T deserialize(JsonElement elem, Type interfaceType, JsonDeserializationContext context) throws JsonParseException {
            final JsonObject wrapper = (JsonObject) elem;
            final JsonElement typeName = get(wrapper, "type");
            final JsonElement data = get(wrapper, "data");
            final Type actualType = typeForName(typeName); 
            return context.deserialize(data, actualType);
        }
    
        private Type typeForName(final JsonElement typeElem) {
            try {
                return Class.forName(typeElem.getAsString());
            } catch (ClassNotFoundException e) {
                throw new JsonParseException(e);
            }
        }
    
        private JsonElement get(final JsonObject wrapper, String memberName) {
            final JsonElement elem = wrapper.get(memberName);
            if (elem == null) throw new JsonParseException("no '" + memberName + "' member found in what was expected to be an interface wrapper");
            return elem;
        }
    }
    
  2. make Gson use it for the interface type of your choice:

    Gson gson = new GsonBuilder().registerTypeAdapter(Animal.class, new InterfaceAdapter<Animal>())
                                 .create();
    
link|improve this answer
That looks like a clean solution to me. Next time I need to do this, I'll give it a whirl. – Ben Flynn Mar 6 at 13:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.