Skip to content

jinahya/jsonrpc-bind-jackson

Repository files navigation

jsonrpc-bind-jackson

Java CI with Maven Build Status CircleCI

Known Vulnerabilities Quality Gate Status

Maven Central Javadocs

An implementation of jsonrpc-bind for Jackson.

Configuration

JacksonJsonrpcConfiguration

This class holds an instance of ObjectMapper. You can use your own one if you want/need to.

// Doing once is enough.
final ObjectMapper objectMapper = getYourOwn();
JacksonJsonrpcConfiguration.setObjectMapper(objectMapper);