An open API service indexing awesome lists of open source software.

https://github.com/brianburton/javimmutable-jackson

Add-on datatype-support module for Jackson (https://github.com/FasterXML/jackson) that handles JImmutable collections.
https://github.com/brianburton/javimmutable-jackson

jackson java json

Last synced: 2 months ago
JSON representation

Add-on datatype-support module for Jackson (https://github.com/FasterXML/jackson) that handles JImmutable collections.

Awesome Lists containing this project

README

          

# Jackson JSON Module for Javimmutable Collections

This library provides an extension to allow the Jackson library to convert Jimmutable collections into JSON and back. To use the module simply create a JImmutableModule and pass it to your ObjectMapper.

````
ObjectMapper mapper = new ObjectMapper();
mapper.registerModules(new JImmutableModule());
````

Once this has been done Jackson can automatically serialize and deserialize JImmutableLists, JImmutableSets, and JImmutableMaps.

This module requires JImmutable Collections 3.0.0 or higher and Jackson databind version 2.9.10.7 or higher.

````


com.fasterxml.jackson.core
jackson-databind
2.9.10.7
provided


org.javimmutable
javimmutable-collections
3.0.0
provided


````