commit | 126a10933124f38c9ae524ddb943a73e92b8751c | [log] [tgz] |
---|---|---|
author | Andrew Guibert <andy.guibert@gmail.com> | Sun Aug 25 21:14:17 2019 -0500 |
committer | GitHub <noreply@github.com> | Sun Aug 25 21:14:17 2019 -0500 |
tree | c90a936dcea802a06cd7945ed34cc311972fad95 | |
parent | 9cc87151b71e10e8596ab966c02511fb467f4cd3 [diff] | |
parent | c815f522ec1f36747c88fb0f409a5293b40a461c [diff] |
Merge pull request #300 from aguibert/serialize-improve-err-msg Include property name when serialization fails
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);