-
Core Java
Read and Write JSON to File with GSON
1. Introduction Using GSON to read and write json to file is easy with the fromJson and toJson APIs. GSON…
Read More » -
Java
Jackson Serialize and Deserialize LocalDate Example
1. Introduction Creating a custom serializer and deserializer via the Jackson library is a common task in Java applications. The…
Read More » -
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
Jackson and Lombok Examples
1. Introduction Jackson is an open-source java library for processing JSONs. It deserializes a JSON string into a Plain Old…
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 » -
Enterprise Java
Hibernate Subselect Annotation
1. Introduction Hibernate is an open source object relational mapping (ORM) tool that provides a framework to map object-oriented domain…
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
Java Arrays Tutorial
1. Introduction In computer programming, an array is a collection of items stored in contiguous memory locations. In Java, an…
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 »