JSON
-
Core Java
Java: Streaming a JDBC ResultSet as JSON
This post shows how you can convert a java.sql.ResultSet to JSON and stream it back to the caller. This is…
Read More » -
Enterprise Java
JSON-B Asymmetrical Property Binding
The JSON-B specification defines binding annotations such as @JsonbProperty or @JsonbTransient to declaratively map Java objects to JSON, and back.…
Read More » -
Enterprise Java
Writing Big JSON Files With Jackson
Sometimes you need to export a lot of data to JSON to a file. Maybe it’s “export all data to…
Read More » -
Enterprise Java
Get to Know Custom De/Serializers: JSON Binding Overview Series
The most advanced way to customize JSON Binding is with custom serializers and deserializers. JSON-B serializers and deserializers are the…
Read More » -
Enterprise Java
Get to Know Adapters: JSON Binding Overview Series
An adapter configures custom object creation and serialization by implementing the JsonbAdapter interface. The methods adaptToJson() and adaptFromJson() are overwritten…
Read More » -
Enterprise Java
Get to Know Custom Object Creation: JSON Binding Overview Series
Let’s take a look at how JSON Binding handles custom object creation. Next article in this series covers customization of…
Read More » -
Enterprise Java
Get to Know Customisation: JSON Binding Overview Series
Let’s take a look at how the annotation model and runtime configuration work when customizing the JSON Binding serialization and…
Read More » -
Enterprise Java
Get to Know JSON Binding: Overview Series
The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform’s overall support for the JSON data interchange…
Read More » -
Enterprise Java
jwt-cli: A Shell Library to Decode JSON Web Tokens (JWT Tokens)
When I started having the need of decoding JSON Web Tokens quite often, I felt the urge of writing a…
Read More »