Spring stereotype's are annotations that denote the roles of types or methods in the overall architecture at a conceptual rather than implementation level according to the Spring Docs.
Category: Java
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

