Ho le seguenti POJO:GSON e InstanceCreator problema
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
}
ho nessun problema a trovare GSON per serializzare un'istanza di ShapeHolder
a JSON. Ma quando cerco di deserializzare una stringa di quella JSON indietro in un'istanza ShapeHolder
, ricevo un errore:
String shapeHolderAsStr = getString();
ShapeHolder holder = gson.fromJson(shapeHodlderAsStr, ShapeHolder.class);
Produce:
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
così ho guardato here e iniziato ad attuare il mio ShapeInstanceCreator
:
Ma ora sono bloccato: mi viene dato solo uno java.lang.reflect.Type
, ma ho davvero bisogno di uno java.lang.Object
così ho ca n scrivere come:
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;
}
}
Cosa posso fare? Grazie in anticipo!
UPDATE:
Per @ di raffian suggerimento (il link lui/lei postato), ho implementato un InterfaceAdapter
esattamente come quello nel link (Non ho cambiato nulla ). Ora sto ottenendo la seguente eccezione:
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)
Qualche idea?
Controlla questo: http://stackoverflow.com/a/19600090/1360888, ha una classe base anziché un'interfaccia ma è come il tuo problema. – giampaolo