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

I have a interface model like: public interface Customer { String getName(); Address getAddress(); } public interface Address { String getStreet(); String getCity(); } For each interface there is a...

enhancement

In the spirits of what JPA has done with ```AttributeConverter(autoApply=true)``` * I would suggest the following changes and implementation of the JsonbtypeAdapter: ```java @JsonbAnnotation @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.ANNOTATION_TYPE, ElementType.FIELD, ElementType.METHOD,ElementType.TYPE}) public @interface...

enhancement

ES6 (EcmaScript version 6) and forward specifies very specific rules for serialization including "predictive property" order. This may appear strange but for a human creating the properties A, B, C...

enhancement

When serializing an object, Jackson has some configuration to filter the NULL, empty values, but it seems Jsonb config only includes a `withNullValues` option, and there is no option to...

Hey there, It would be nice to enhance the interface [javax.json.bind.Jsonb](https://github.com/eclipse-ee4j/jsonb-api/blob/master/api/src/main/java/javax/json/bind/Jsonb.java) to allow handling of [javax.json.JsonStructure](https://github.com/eclipse-ee4j/jsonp/blob/master/api/src/main/java/javax/json/JsonStructure.java) as input for deserialization (unmarshalling to a Java class). This means, there should be...

enhancement

* On ballot completion, the specification committee mentor: - [x] creates an issue in the specification project that includes the following checklist for the specification project team: ---- * Specification...

Today if you do: > jsonb = JsonbBuilder.create() and map a model using a cdi adapter bound with > @JsonbTypeAdapter(MyCDIImpl.class) then it works whereas it must not. However if you...

**Is your feature request related to a problem? Please describe.** Jakarta EE 9 is the next major release, with the main focus of moving from the ```javax``` namespace to the...

Epic
wave:2

It would be very convenient to have an analogue to the `@XmlAccessortype` annotation for Jsonb. Jsonb presently reads fields _plus_ methods. For complex classes having many helper methods this can...

Json-b presently does not appear to recognize or honor `@JsonbProperty` annotation when applied to enumerated types. We suggest adding an annotation type that implements the same logic as `@XmlEnumValue` Without...