Skip to content

jimdanz/jackson-datatype-guava

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project to build Jackson (http://jackson.codehaus.org) module (jar) to support JSON serialization and deserialization of Guava (http://code.google.com/p/guava-libraries/) collection types.

Build Status

Status

As of version 2.0 module is usable although coverage is not extensive: more support is added mainly via user contributions.

Usage

Maven dependency

To use module on Maven-based projects, use following dependency:

<dependency>
  <groupId>com.fasterxml.jackson.datatype</groupId>
  <artifactId>jackson-datatype-guava</artifactId>
  <version>2.1.1</version>
</dependency>    

(or whatever version is most up-to-date at the moment)

Registering module

Like all standard Jackson modules (libraries that implement Module interface), registration is done as follows:

ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(new GuavaModule());

after which functionality is available for all normal Jackson operations.

More

See Wiki for more information (javadocs, downloads).

About

Add-on module for Jackson JSON processor which handles Google Guava (http://code.google.com/p/guava-libraries/) datatypes (collections)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%