Post Processing on Gson Deserialization

--

Gson is a great library to serialize from Object to JSON and deserialize from JSON to Object. If the Object model and JSON format match identically, then everything works magically. Else we could customize the Gson object by adding Exclusion Strategy, creating registering Type Adapter to customize the serialization and deserialization etc.

--

--