Why does GSON use ONLY fields(private,public,protected)? Is there a way to tell GSON to use only getters and setters?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Is there a way to tell GSON to use only getters and setters?

Not yet.

From the design doc:

[T]here are good arguments to support properties as well. We intend to enhance Gson in a latter version to support properties as an alternate mapping for indicating Json fields. For now, Gson is fields-based.

link|improve this answer
Concerning Gson support for getters and setters, the latest update on this from the mailing list is that "[t]he prospects of such a feature making into Gson are fairly low..." groups.google.com/forum/#!topic/google-gson/4G6Lv9PghUY – Programmer Bruce Jul 2 '11 at 9:26
feedback

Generally speaking when you serialize/deserialize an object, you are doing so to end up with an exact copy of the state of the object; As such, you generally want to circumvent the encapsulation normally desired in an OO design. If you do not circumvent the encapsulation, it may not be possible to end up with an object that has the exact same state after deserialization as it had prior to serialization. Additionally, consider the case where you do not want to provide a setter for a particular property. How should serialization/deserialization act if you are working through the getters and setters?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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