I'm using the new firebase sdk for android and use the real database feature. When i use the getValue(simple.class)
everything is fine. But when i want to parse a class which is a subclass, all the attribute of the mother class are null
, and i have this type of error:
No setter/field for name found on class uk.edume.edumeapp.TestChild
public class TestChild extends TestMother {
private String childAttribute;
public String getChildAttribute() {
return childAttribute;
}
}
public class TestMother {
protected String motherAttribute;
protected String getMotherAttribute() {
return motherAttribute;
}
}
this function
snapshot.getValue(TestChild.class);
motherAttribute
attribute is null
, and I get
No setter/field for motherAttribute found on class uk.edume.edumeapp.TestChild
the Json that i parse is:
{
"childAttribute" : "attribute in child class",
"motherAttribute" : "attribute in mother class"
}
Firebaser here
This is a known bug in some versions of the Firebase Database SDK for Android: our serializer/deserializer only considers properties/fields on the declared class.
Serialization of inherited properties from the base class, is missing in the in releases 9.0 to 9.6 (iirc) of the Firebase Database SDK for Android. It was added back in versions since then.
Workaround
In the meantime you can use Jackson (which the Firebase 2.x SDKs used under the hood) to make the inheritance model work.
Update: here's a snippet of how you can read from JSON into your
TestChild
:You'll note that I made
getParentAttribute()
public, because only public fields/getters are considered. With that change, this JSON:Becomes readable with:
The
GenericTypeIndicator
is a bit weird, but luckily it's a magic incantation that can be copy/pasted.Check this https://firebase.google.com/support/guides/firebase-android
it says
You can get rid of this warning by putting an @IgnoreExtraProperties annotation on your class. If you want Firebase Database to behave as it did in the 2.x SDK and throw an exception if there are unknown properties, you can put a @ThrowOnExtraProperties annotation on your class.
This was apparently finally fixed in release 9.6.
for:
put setter for TestChild class: