Handling Inconsistent Json Data using Jackson

You might find that you need to unmarshall a json data into a domain object but the json data structure is not consistent. In cases such as this, the unmarshalling process will fail. Jackson allows you to write your own custom Json Deserializer to resolve this issue. If we have the following Json data as… Continue reading Handling Inconsistent Json Data using Jackson