Java

Jackson Json Annotations Example

Previous data-binding posts gave the idea about how the POJO's are mapped to JSON and viceversa using ObjectMapper API. This…

9 years ago

Jackson Streaming Api Example

For situations where performance is most critical, Jackson comes with Streaming API which is a high performance, sequential access api,…

9 years ago

Jackson Tree Model Example

Conceptually JSON can be represented as a Tree (similar to DOM tree). Therefore it is possible to traverse to individual…

9 years ago

Converting JSON to/from Java Maps using JACKSON API

Since JSON format is essentially a key-value pair grouping, JSON can easily be converted to/from Java maps. This post is…

9 years ago

Converting JSON to/from Java Objects using JACKSON API

This post explains Jackson data-binding, which is a common approach when dealing with JSON using Jackson API in your Java…

9 years ago

Json Structure

Java Script Object Notation (JSON) is one of the most popular and commonly used way to represent information. This post…

9 years ago

JAXB2 Annotations

This post explains some of the frequently used JAXB2 annotations. For the complete list of JAXB2 annotations, please visit API…

9 years ago

JAXB2 Code Generation Maven Example

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…

9 years ago

JAXB2 Schema Validation Example

This post shown how JAXB2 Schema validation can be used in your project, validating the generated XML against specific XML…

9 years ago

JAXB2 Helloworld Example,Marshal/UnMarshal Example

This JAXB2 Helloworld example post explains the basics of JAXB along with core concepts like Mapping, Marshalling & Unmarshalling XML…

9 years ago