Jackson

From NovaOrdis Knowledge Base
Revision as of 18:59, 26 February 2017 by Ovidiu (talk | contribs) (→‎Data Binding)
Jump to navigation Jump to search

External

Internal

Overview

Jackson is a Java library for processing JSON data format. It has support for marshaling and unmarshalling Java to and from JSON. It has a JAX-RS content handler that can automatically convert between Java objects and JSON, and vice-versa. It can generate JSON schemas from a Java object model.

JSON Processing Methods

Jackson offers three alternative methods for processing JSON:

Streaming API

The Streaming API reads and writes JSON as a series of discrete events, in a mode called "incremental parsing/generation". The other two methods (Tree Model and Data Binding) are built in top of it. However, this is not the most convenient method, because is relatively low level. For more details, see:

Jackson Streaming API

Tree Model

A JSON document is converted into a mutable in-memory tree representation of the JSON document. Tree model is arguably the most flexible of all three methods. For more details, see:

Jackson Tree Model

Data Binding

Jackson extracts data from JSON and initializes a in-memory Java object hierarchy. It uses non-Jackson types in the process, unlike the tree model, where JSON is translated to a JsonNode hierarchy.

In case of simple data binding, those Java types are Maps, Lists, Strings, Numbers, Booleans and nulls. In case of full data binding, Jackson converts JSON to any Java bean type. Data binding is arguably the most convenient of all three methods.

For more details, see:

Jackson Simple Data Binding
Jackson Full Data Binding

TODO and delete: https://home.feodorov.com:9443/wiki/Wiki.jsp?page=Jackson

Maven Support

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>2.8.7</version>
</dependency>

If the tree model is used, this is also required:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.8.7</version>
</dependency>