JSON
-
Core Java
Custom Field Name with @JsonProperty
1. Introduction Custom field name with @JsonProperty is very useful when mapping Java fields to JavaScript Object Notation (JSON) properties…
Read More » -
Core Java
Custom Field Names with @SerializedName in Gson
Gson is a popular Java library for converting Java objects to their JSON representation and vice versa. One of the…
Read More » -
Core Java
Parse JSON using Moshi
Moshi is a modern JSON library for Android and Java by Square. It simplifies parsing and serializing JSON, supports annotations,…
Read More » -
Core Java
Map Subset of JSON via Jackson
1. Introduction JavaScript Object Notation (JSON) is a text-based data format and widely used in the APIs for exchanging data…
Read More » -
Core Java
Include null Value in JSON Serialization
1. Introduction JavaScript Object Notation (JSON) is text-based data format that is easy for humans to read and write and…
Read More » -
Core Java
A Guide To Jackson-jr Library
1. Introduction JavaScript Object Notation (JSON) is a text-based format for storing and exchanging data. It’s commonly used by web…
Read More » -
Enterprise Java
Simplified Array Operations on JsonNode Without Typecasting in Jackson
In Java development, managing JSON data efficiently is crucial, especially when dealing with arrays within JSON structures. This article focuses…
Read More » -
Core Java
How to Convert Excel to JSON in Java
1. Introduction When Java applications deal with data interchange between different systems, it’s common to convert Excel to JSON. Apache…
Read More » -
Core Java
Serialization with FlatBuffers in Java
FlatBuffers in Java facilitates high-speed data serialization/deserialization, eliminating parsing overhead. Developed by Google, it offers a schema-less, memory-efficient solution for…
Read More »