commit | e8218d143c15e8f70da8594583c5f7d9a04f855a | [log] [tgz] |
---|---|---|
author | Eclipse Yasson Bot <yasson-bot@eclipse.org> | Fri Dec 28 03:31:12 2018 -0500 |
committer | Eclipse Yasson Bot <yasson-bot@eclipse.org> | Fri Dec 28 03:31:12 2018 -0500 |
tree | 47226166b5bded25bd28d6e352f56cab84a51b7c | |
parent | 25c7f7bb833b630700b8b5b3d21775f979176ba9 [diff] |
Prepare next development cycle for 1.0.4-SNAPSHOT
Yasson is a Java framework which provides a standard binding layer between Java classes and JSON documents. This is similar to what JAXB is doing in the XML world. Yasson is an official reference implementation of JSON Binding (JSR-367).
It defines a default mapping algorithm for converting existing Java classes to JSON suitable for the most cases:
Jsonb jsonb = JsonbBuilder.create(); String result = jsonb.toJson(someObject);
For whom it's not enough it provides rich customization abilities through a set of annotations and rich programmatic API:
// Create custom configuration JsonbConfig config = new JsonbConfig() .withNullValues(true) .withFormating(true); // Create Jsonb with custom configuration Jsonb jsonb = JsonbBuilder.create(config); // Use it! String result = jsonb.toJson(someObject);