Previous data-binding posts gave the idea about how the POJO's are mapped to JSON and viceversa using ObjectMapper API. This…
For situations where performance is most critical, Jackson comes with Streaming API which is a high performance, sequential access api,…
Conceptually JSON can be represented as a Tree (similar to DOM tree). Therefore it is possible to traverse to individual…
Since JSON format is essentially a key-value pair grouping, JSON can easily be converted to/from Java maps. This post is…
This post explains Jackson data-binding, which is a common approach when dealing with JSON using Jackson API in your Java…
Java Script Object Notation (JSON) is one of the most popular and commonly used way to represent information. This post…
This post explains some of the frequently used JAXB2 annotations. For the complete list of JAXB2 annotations, please visit API…
This post demonstrates JAXB2 Code generation example using maven-jaxb2-plugin, adding generated code to source with build-helper-maven-plugin. Sometimes, while integrating with…
This post shown how JAXB2 Schema validation can be used in your project, validating the generated XML against specific XML…
This JAXB2 Helloworld example post explains the basics of JAXB along with core concepts like Mapping, Marshalling & Unmarshalling XML…