1. Overview In this tutorial, we'll look at changing property names during serialization and deserialization. As a result, a field name in Java obj...
Continue Reading1. Overview In this tutorial, we'll investigate how to format date fields for serialization using Jackson. Firstly, we'll look at Jackson's default...
Continue Reading1. Overview In this tutorial, we're going to look at how we can ignore properties for serialization, but not for deserialization. So when Jackson i...
Continue Reading1. Overview In this tutorial, we'll look at how Jackson retrieves property values during serialization. For example, we'll investigate whether Jack...
Continue Reading1. Overview In this tutorial, we'll investigate how we can ignore some properties of a class during serialization and deserialization using Jackson...
Continue Reading1. Overview In this tutorial, we'll investigate how we can serialize properties with different access modifiers. Additionally, we'll look at the us...
Continue Reading1. Overview In this tutorial, we'll look at serialization of null values. By default, Jackson serializes objects with all visible properties, but w...
Continue Reading1. Overview In this tutorial, we'll look at serializing private fields using Jackson. 2. Serialize Private Fields Let's start with the default beha...
Continue Reading