अपडेटेड उत्तर - अन्य सभी उत्तरों के सर्वश्रेष्ठ भाग
मैं विभिन्न उपयोग के मामलों के लिए समाधानों का वर्णन कर रहा हूं और अनंत पुनरावृत्ति समस्या को भी संबोधित करूंगा
केस 1: आप कक्षाओं के नियंत्रण में हैं , यानी, आपको अपनी खुद की Cat
, Dog
कक्षाओं के साथ-साथ लिखने के लिए भी मिलता हैIAnimal
इंटरफ़ेस । आप बस @ marcus-junius-brutus (शीर्ष रेटेड उत्तर) द्वारा दिए गए समाधान का पालन कर सकते हैं
यदि कोई सामान्य आधार इंटरफ़ेस है तो कोई भी अनंत पुनरावृत्ति नहीं होगी IAnimal
लेकिन, क्या होगा अगर मैं IAnimal
या इस तरह के किसी भी इंटरफ़ेस को लागू नहीं करना चाहता ?
फिर, @ marcus-junius-brutus (शीर्ष रेटेड उत्तर) एक अनंत पुनरावृत्ति त्रुटि पैदा करेगा। इस मामले में, हम नीचे जैसा कुछ कर सकते हैं।
हमें बेस क्लास के अंदर एक कॉपी कंस्ट्रक्टर बनाना होगा और एक रैपर सबक्लास निम्नानुसार होगा:
।
// Base class(modified)
public class Cat implements IAnimal {
public String name;
public Cat(String name) {
super();
this.name = name;
}
// COPY CONSTRUCTOR
public Cat(Cat cat) {
this.name = cat.name;
}
@Override
public String sound() {
return name + " : \"meaow\"";
};
}
// The wrapper subclass for serialization
public class CatWrapper extends Cat{
public CatWrapper(String name) {
super(name);
}
public CatWrapper(Cat cat) {
super(cat);
}
}
और इस प्रकार के लिए धारावाहिक Cat
:
public class CatSerializer implements JsonSerializer<Cat> {
@Override
public JsonElement serialize(Cat src, Type typeOfSrc, JsonSerializationContext context) {
// Essentially the same as the type Cat
JsonElement catWrapped = context.serialize(new CatWrapper(src));
// Here, we can customize the generated JSON from the wrapper as we want.
// We can add a field, remove a field, etc.
return modifyJSON(catWrapped);
}
private JsonElement modifyJSON(JsonElement base){
// TODO: Modify something
return base;
}
}
तो, एक प्रतिलिपि निर्माता क्यों?
खैर, एक बार जब आप कॉपी कंस्ट्रक्टर को परिभाषित करते हैं, तो आधार वर्ग कितना भी बदल जाए, आपका रैपर उसी भूमिका के साथ जारी रहेगा। दूसरे, अगर हम एक कॉपी कंस्ट्रक्टर को परिभाषित नहीं करते हैं और बस बेस क्लास को उप-वर्ग बनाते हैं तो हमें विस्तारित क्लास के संदर्भ में "बात" करनी होगी, अर्थात CatWrapper
। यह काफी संभव है कि आपके घटक बेस क्लास के संदर्भ में बात करते हैं न कि आवरण प्रकार के।
क्या कोई आसान विकल्प है?
ज़रूर, यह अब Google द्वारा पेश किया गया है - यह RuntimeTypeAdapterFactory
कार्यान्वयन है:
RuntimeTypeAdapterFactory<Animal> runtimeTypeAdapterFactory = RuntimeTypeAdapterFactory
.of(Animal.class, "type")
.registerSubtype(Dog.class, "dog")
.registerSubtype(Cat.class, "cat");
Gson gson = new GsonBuilder()
.registerTypeAdapterFactory(runtimeTypeAdapterFactory)
.create();
यहां, आपको "कुत्ता" होने के लिए "टाइप" Animal
और " अंदर Dog
" के समान मूल्य का एक फ़ील्ड पेश करना होगा , Cat
"कैट" होना
पूरा उदाहरण: https://static.javadoc.io/org.danilopianini/gson-extras/0.2.1/com/google/gson/typeadapters/RuntimeTypeAdapterFactory.html
।
// The class we are NOT allowed to modify
public class Dog implements IAnimal {
public String name;
public int ferocity;
public Dog(String name, int ferocity) {
super();
this.name = name;
this.ferocity = ferocity;
}
@Override
public String sound() {
return name + " : \"bark\" (ferocity level:" + ferocity + ")";
}
}
// The marker interface
public interface AnimalInterface {
}
// The subclass for serialization
public class DogWrapper extends Dog implements AnimalInterface{
public DogWrapper(String name, int ferocity) {
super(name, ferocity);
}
}
// The subclass for serialization
public class CatWrapper extends Cat implements AnimalInterface{
public CatWrapper(String name) {
super(name);
}
}
इसलिए, हम CatWrapper
इसके बजाय Cat
, के DogWrapper
बजाय Dog
और के
AlternativeAnimalAdapter
बजाय उपयोग कर रहे होंगेIAnimalAdapter
// The only difference between `IAnimalAdapter` and `AlternativeAnimalAdapter` is that of the interface, i.e, `AnimalInterface` instead of `IAnimal`
public class AlternativeAnimalAdapter implements JsonSerializer<AnimalInterface>, JsonDeserializer<AnimalInterface> {
private static final String CLASSNAME = "CLASSNAME";
private static final String INSTANCE = "INSTANCE";
@Override
public JsonElement serialize(AnimalInterface src, Type typeOfSrc,
JsonSerializationContext context) {
JsonObject retValue = new JsonObject();
String className = src.getClass().getName();
retValue.addProperty(CLASSNAME, className);
JsonElement elem = context.serialize(src);
retValue.add(INSTANCE, elem);
return retValue;
}
@Override
public AnimalInterface deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context) throws JsonParseException {
JsonObject jsonObject = json.getAsJsonObject();
JsonPrimitive prim = (JsonPrimitive) jsonObject.get(CLASSNAME);
String className = prim.getAsString();
Class<?> klass = null;
try {
klass = Class.forName(className);
} catch (ClassNotFoundException e) {
e.printStackTrace();
throw new JsonParseException(e.getMessage());
}
return context.deserialize(jsonObject.get(INSTANCE), klass);
}
}
हम एक परीक्षण करते हैं:
public class Test {
public static void main(String[] args) {
// Note that we are using the extended classes instead of the base ones
IAnimal animals[] = new IAnimal[]{new CatWrapper("Kitty"), new DogWrapper("Brutus", 5)};
Gson gsonExt = null;
{
GsonBuilder builder = new GsonBuilder();
builder.registerTypeAdapter(AnimalInterface.class, new AlternativeAnimalAdapter());
gsonExt = builder.create();
}
for (IAnimal animal : animals) {
String animalJson = gsonExt.toJson(animal, AnimalInterface.class);
System.out.println("serialized with the custom serializer:" + animalJson);
AnimalInterface animal2 = gsonExt.fromJson(animalJson, AnimalInterface.class);
}
}
}
आउटपुट:
serialized with the custom serializer:{"CLASSNAME":"com.examples_so.CatWrapper","INSTANCE":{"name":"Kitty"}}
serialized with the custom serializer:{"CLASSNAME":"com.examples_so.DogWrapper","INSTANCE":{"name":"Brutus","ferocity":5}}