web-dev-qa-db-fra.com

Problème GSON et InstanceCreator

J'ai les POJO suivants:

public interface Shape {
    public double calcArea();
    public double calcPerimeter();
}

public class Rectangle implement Shape {
    // Various properties of a rectangle
}

public class Circle implements Shape {
    // Various properties of a circle
}

public class ShapeHolder {
    private List<Shape> shapes;

    // other stuff
}

Je n'ai aucun problème à faire en sorte que GSON sérialise une instance de ShapeHolder en JSON. Mais lorsque j'essaie de désérialiser une chaîne de ce JSON dans une instance ShapeHolder, des erreurs se produisent:

String shapeHolderAsStr = getString();
ShapeHolder holder = gson.fromJson(shapeHodlderAsStr, ShapeHolder.class);

Jette:

Exception in thread "main" Java.lang.RuntimeException: Unable to invoke no-args constructor for interface    
net.myapp.Shape. Register an InstanceCreator with Gson for this type may fix this problem.
    at com.google.gson.internal.ConstructorConstructor$8.construct(ConstructorConstructor.Java:167)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.Java:162)
    ... rest of stack trace ommitted for brevity

J'ai donc regardé ici et commencé à mettre en œuvre ma propre ShapeInstanceCreator:

public class ShapeInstanceCreator implements InstanceCreator<Shape> {
    @Override
    public Shape createInstance(Type type) {
        // TODO: ???
        return null;
    }
}

Mais maintenant je suis bloqué: je ne reçois qu'un Java.lang.reflect.Type, mais j'ai vraiment besoin d'un Java.lang.Object pour pouvoir écrire le code suivant:

public class ShapeInstanceCreator implements InstanceCreator<Shape> {
    @Override
    public Shape createInstance(Type type) {
        Object obj = convertTypeToObject(type);

        if(obj instanceof Rectangle) {
            Rectangle r = (Rectangle)obj;
            return r;
        } else {
            Circle c = (Circle)obj;
            return c;
        }

        return null;
    }
}

Que puis-je faire? Merci d'avance!

UPDATE:

Selon la suggestion de @ raffian (le lien qu'il/elle a posté), j'ai implémenté un InterfaceAdapter exactement comme celui du lien (je n'ai pas changé rien). Maintenant, je reçois l'exception suivante:

Exception in thread "main" com.google.gson.JsonParseException: no 'type' member found in what was expected to be an interface wrapper
    at net.myapp.InterfaceAdapter.get(InterfaceAdapter.Java:39)
    at net.myapp.InterfaceAdapter.deserialize(InterfaceAdapter.Java:23)

Des idées?

10
IAmYourFaja

Avez-vous regardé ceci ? Cela ressemble à une manière propre et agréable d'implémenter InstanceCreators.

J'utilisais aussi Gson, mais je suis passé à FlexJSON en raison de problèmes de sérialisation. Avec Flex, vous n'avez pas besoin de créateurs d'instance, assurez-vous simplement que vos objets ont des getters/setters pour tous les champs basés sur les spécifications JavaBean, et vous êtes prêt à partir: 

 ShapeHolder sh = new ShapeHolder();
 sh.addShape(new Rectangle());
 sh.addShape(new Circle());
 JSONSerializer ser = new JSONSerializer();
 String json = ser.deepSerialize(sh);
 JSONDeserializer<ShapeHolder> der = new JSONDeserializer<ShapeHolder>();
 ShapeHolder sh2 = der.deserialize(json);
6
raffian

NOTE que FlexJSON ajoute le nom de la classe dans json comme ci-dessous le temps de sérialisation.

{
    "HTTPStatus": "OK",
    "class": "com.XXX.YYY.HTTPViewResponse",
    "code": null,
    "outputContext": {
        "class": "com.XXX.YYY.ZZZ.OutputSuccessContext",
        "eligible": true
    }
}

Donc, JSON en encombrera un peu; mais vous n'avez pas besoin d'écrire InstanceCreator qui est requis dans GSON.

0
Kanagavelu Sugumar