Manisha Chand has Published 34 Articles

When to use @JsonValue annotation using Jackson in Java?

Manisha Chand

Manisha Chand

Updated on 19-May-2025 16:23:29

5K+ Views

In Java, Jackson is a library that is used to convert JSON to Java objects and vice versa. Jackson Annotations are used during serialization and deserialization. We use these to denote or specify annotations before a particular field or method (that is declared in Java). ... Read More

How to convert a JSON to Java Object using the Jackson library in Java?

Manisha Chand

Manisha Chand

Updated on 19-May-2025 15:51:31

42K+ Views

Jackson is a Java library that is used to convert JSON to Java objects and vice versa. Conversion of JSON to a Java object is called deserialization, and Java object to JSON is known as serialization. Both of these tasks can be done by using the Jackson library. In this ... Read More

How to convert a List to JSON array using the Jackson library in Java?

Manisha Chand

Manisha Chand

Updated on 29-Apr-2025 12:24:45

11K+ Views

JSON is used in Java applications in APIs, file storage, and data communication between systems. Sometimes, we need to convert a list into a JSON array. In this article, we will learn how to convert a list to JSON array using the Jackson library. Jackson Library It is a library ... Read More

How can we map multiple date formats using Jackson in Java?

Manisha Chand

Manisha Chand

Updated on 21-Apr-2025 16:18:18

3K+ Views

When we are working with those Java applications that handle JSON data, it is common that we find different date formats. It might happen that one field contains just the date, while another includes time and date, and even time zone. For handling this type of data Jackson library is ... Read More

Advertisements