By default Gson uses fields as a basis for it's serialization. Is there a way to get it to use accessors instead?
|
The developers of Gson say that they never felt swayed by the requests to add this feature and they were worried about murkying up the api to add support for this. One way of adding this functionality is by using a TypeAdapter (I apologize for the gnarly code but this demonstrates the principle):
You can register this as a normal type adapter for a given type or through a TypeAdapterfactory - possibly checking for the presence of a runtime annotation:
This can be specified as normal when creating your gson instance:
|
|||
|
|
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group. If you can't get Gson to do what you want, below is how you can accomplish this using MOXy's native JSON binding. MOXy like any JAXB implementation will use property (public) access by default. You can configure field access using Customer
Address
jaxb.properties To configure MOXy as your JAXB provider you need to add a file called
Demo
input.json/Output
For More Information |
|||
|
|