jsonb-api icon indicating copy to clipboard operation
jsonb-api copied to clipboard

Jakarta JSON Binding

Results 120 jsonb-api issues
Sort by recently updated
recently updated
newest added

The [Users Guide](https://github.com/eclipse-ee4j/jsonb-api/blob/master/docs/src/docs/user-guide.adoc) still refers to Json Binding 1.0.1. It would be nice if it could be updated to reflect current best practices and help new users better understand how...

JSONB currently has some weakness when it comes to class hierarchies like `class A extends B`. In 3.7.1 of the JSONB-1.0 spec it states that For a serialization operation, if...

The default implicit visibility spi equivalent has rules like "if there is a field and some getter/setter ....", this can only be implemented if you have the field + the...

Tasks to complete the release: - [x] promotes api staging release promotes the specification api jars to maven central. An example release job script can be found here https://wiki.eclipse.org/MavenReleaseScript. -...

The failure is due to the Signature Test plugin failing to run in `static mode` because it does not recognize or thinks that a specifc argument is missing. This leads...

remove references to JavaTest from TCK user-guide. Signed-off-by: gurunrao

Json-B and Json-P were initially seen as a very welcome initiative, finally bringing some standardization to json parsing and writing. Let’s face it: it is not a huge success, so...

question

TCK Migration: Move standalone jsonb tck signature tests from jakartaee-tck to https://github.com/eclipse-ee4j/jsonb-api and run with migrated TCK at https://github.com/eclipse-ee4j/jsonb-api.

At the top-level of [`Jsonb`](https://eclipse-ee4j.github.io/jsonb-api/docs/api/java.json.bind/javax/json/bind/Jsonb.html) you can specify a [`runtimeType`](https://eclipse-ee4j.github.io/jsonb-api/docs/api/java.json.bind/javax/json/bind/Jsonb.html#toJson%28java.lang.Object,java.lang.reflect.Type%29) when serializing but that information is lost as you go down the object graph via [`SerializationContext`](https://eclipse-ee4j.github.io/jsonb-api/docs/api/java.json.bind/javax/json/bind/serializer/SerializationContext.html) method [`serialize(...)`](https://eclipse-ee4j.github.io/jsonb-api/docs/api/java.json.bind/javax/json/bind/serializer/SerializationContext.html#serialize%28T,javax.json.stream.JsonGenerator%29). With the...