https://github.com/jinahya/jsonrpc-bind-jackson
API for JSON-RPC with Jackson
https://github.com/jinahya/jsonrpc-bind-jackson
jackson java java8 json json-rpc json-rpc2
Last synced: 22 days ago
JSON representation
API for JSON-RPC with Jackson
- Host: GitHub
- URL: https://github.com/jinahya/jsonrpc-bind-jackson
- Owner: jinahya
- License: apache-2.0
- Created: 2019-06-16T05:39:01.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2022-10-17T19:32:24.000Z (over 3 years ago)
- Last Synced: 2026-03-03T18:09:46.412Z (3 months ago)
- Topics: jackson, java, java8, json, json-rpc, json-rpc2
- Language: Java
- Homepage:
- Size: 341 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jsonrpc-bind-jackson
[](https://github.com/jinahya/jsonrpc-bind-jackson/actions)
[](https://travis-ci.org/jinahya/jsonrpc-bind-jackson)
[](https://circleci.com/gh/jinahya/jsonrpc-bind-jackson/tree/develop)
[](https://snyk.io//test/github/jinahya/jsonrpc-bind-jackson?targetFile=pom.xml)
[](https://sonarcloud.io/dashboard?id=com.github.jinahya%3Ajsonrpc-bind-jackson%3Adevelop)

[](https://javadoc.io/doc/com.github.jinahya/jsonrpc-bind-jackson)
An implementation of [jsonrpc-bind](https://github.com/jinahya/jsonrpc-bind) for [Jackson](https://github.com/FasterXML/jackson).
## Configuration
### `JacksonJsonrpcConfiguration`
This class holds an instance of `ObjectMapper`. You can use your own one if you want/need to.
```java
// Doing once is enough.
final ObjectMapper objectMapper = getYourOwn();
JacksonJsonrpcConfiguration.setObjectMapper(objectMapper);
```