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

Jakarta JSON Processing

Results 54 jsonp-api issues
Sort by recently updated
recently updated
newest added

Parsing a sequence of JSON objects is not possible, but the standard says: ```` JsonParser can be used to parse sequence of JSON values that are not enclosed in a...

The JsonParser [documentation ](https://jakarta.ee/specifications/jsonp/2.0/apidocs/jakarta.json/jakarta/json/stream/jsonparser) shows: > JsonParser can be used to parse sequence of JSON values that are not enclosed in a JSON array, e.g. { } { }. The...

Since Java 11, there is the new HttpClient API. However, to use it with JSON, it is always required to create an adapter class that converts a JSON that comes...

The `Json` factory methods (`createObjectBuilder​()`, `createArrayBuilder​()`, etc) are very inefficient because they call `JsonProvider.provider()` every time and do not cache the result. Some benchmarking we did showed these methods to...

The current signature of the collector ```JsonCollectors#toJsonObject​()``` is: ```java static Collector toJsonObject​() ``` That signature forces the following code: ```java Map map = ...; JsonObject obj = map.entrySet() .stream() .collect(toJsonObject());...

This is an enhancement idea for the next version of JSON-P. UTF-8 is the predominant representation for JSON text: From https://tools.ietf.org/html/rfc8259: > JSON text exchanged between systems that are not...

https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/

Follow up of https://github.com/eclipse-ee4j/jsonb-api/issues/224#issuecomment-590126204 Would be neat to have a way to skip some elements so instead of materializing it. Concretely it means next will need a skip equivalent, visiting...