commit | e158a42d3b617bb466a06b8ccf373b53697d4fa2 | [log] [tgz] |
---|---|---|
author | Tatu Saloranta <tsaloranta@gmail.com> | Mon May 14 18:42:21 2012 -0700 |
committer | Tatu Saloranta <tsaloranta@gmail.com> | Mon May 14 18:42:21 2012 -0700 |
tree | 297eddef122b9a5e1c083232c245e1504816aba5 | |
parent | da18155bd945e53d64ea9fb87373fa8fe125eb03 [diff] |
prepare for 2.0.2 release
This project contains core core low-level incremental ("streaming") parser and generator abstractions used by Jackson Data Processor. It also includes the default implementation of handler types (parser, generator) that handle JSON format. The core abstractions are not JSON specific, although naming does contain 'JSON' in many places, due to historical reasons. Only packages that specifically contain word 'json' are JSON-specific.
This package is the base on which Jackson data-binding package builds on.
Alternate data format implementations (like Smile (binary JSON), XML and CSV) also build on this base package, implementing the core interfaces, making it possible to use standard data-binding package regardless of underlying data format.
Project contains versions 2.0 and above: source code for earlier (1.x) versions is available from Codehaus SVN repository.
Project contains versions 2.0 and above: source code for earlier (1.x) versions is available from Codehaus SVN repository
Note that the main differences compared to 1.0 core jar are:
com.fasterxml.jackson.core
(instead of org.codehaus.jackson
)Functionality of this package is contained in Java package com.fasterxml.jackson.core
.
To use databinding, you need to use following Maven dependency:
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.0.0</version> </dependency>
or download jars from Maven repository or Download page. Core jar is a functional OSGi bundle, with proper import/export declarations.
Package has no external dependencies, except for testing (which uses JUnit
).
For non-Maven use cases, you download jars from Central Maven repository or Download page.
Core jar is also a functional OSGi bundle, with proper import/export declarations, so it can be use on OSGi container as is.
Usage typically starts with creation of a reusable (and thread-safe, once configured) JsonFactory
instance:
JsonFactory factory = new JsonFactory(); // configure, if necessary: factory.enable(JsonParser.Feature.ALLOW_COMMENTS);
Alternatively, you have a ObjectMapper
(from Jackson Databind package) handy; if so, you can do:
JsonFactory factory = objectMapper.getJsonFactory();
All reading is by using JsonParser
(or its sub-classes, in case of data formats other than JSON), instance of which is constructed by JsonFactory
:
(TO BE WRITTEN)
All writing is by using JsonGenerator
(or its sub-classes, in case of data formats other than JSON), instance of which is constructed by JsonFactory
:
(TO BE WRITTEN)
Project-specific documentation:
Related: