Jackson – Unmarshall to Collection/Array

1. Overview

This tutorial will show how to deserialize a JSON Array to a Java Array or Collection with Jackson 2.

If you want to dig deeper and learn other cool things you can do with the Jackson 2 – head on over to the main Jackson tutorial.

2. Unmarshall to Array

Jackson can easily deserialize to a Java Array:

@Test
public void givenJsonArray_whenDeserializingAsArray_thenCorrect() 
  throws JsonParseException, JsonMappingException, IOException {
 
    ObjectMapper mapper = new ObjectMapper();
    List<MyDto> listOfDtos = Lists.newArrayList(
      new MyDto("a", 1, true), new MyDto("bc", 3, false));
    String jsonArray = mapper.writeValueAsString(listOfDtos);
 
    // [{"stringValue":"a","intValue":1,"booleanValue":true},
    // {"stringValue":"bc","intValue":3,"booleanValue":false}]

    MyDto[] asArray = mapper.readValue(jsonArray, MyDto[].class);
    assertThat(asArray[0], instanceOf(MyDto.class));
}

3. Unmarshall to Collection

Reading the same JSON Array into a Java Collection is a bit more difficult – by default, Jackson will not be able to get the full generic type information and will instead create a collection of LinkedHashMap instances:

@Test
public void givenJsonArray_whenDeserializingAsListWithNoTypeInfo_thenNotCorrect() 
  throws JsonParseException, JsonMappingException, IOException {
 
    ObjectMapper mapper = new ObjectMapper();

    List<MyDto> listOfDtos = Lists.newArrayList(
      new MyDto("a", 1, true), new MyDto("bc", 3, false));
    String jsonArray = mapper.writeValueAsString(listOfDtos);

    List<MyDto> asList = mapper.readValue(jsonArray, List.class);
    assertThat((Object) asList.get(0), instanceOf(LinkedHashMap.class));
}

There are two ways to help Jackson understand the right type information – we can either use the TypeReference provided by the library for this very purpose:

@Test
public void givenJsonArray_whenDeserializingAsListWithTypeReferenceHelp_thenCorrect() 
  throws JsonParseException, JsonMappingException, IOException {
 
    ObjectMapper mapper = new ObjectMapper();

    List<MyDto> listOfDtos = Lists.newArrayList(
      new MyDto("a", 1, true), new MyDto("bc", 3, false));
    String jsonArray = mapper.writeValueAsString(listOfDtos);

    List<MyDto> asList = mapper.readValue(
      jsonArray, new TypeReference<List<MyDto>>() { });
    assertThat(asList.get(0), instanceOf(MyDto.class));
}

Or we can use the overloaded readValue method that accepts a JavaType:

@Test
public void givenJsonArray_whenDeserializingAsListWithJavaTypeHelp_thenCorrect() 
  throws JsonParseException, JsonMappingException, IOException {
    ObjectMapper mapper = new ObjectMapper();

    List<MyDto> listOfDtos = Lists.newArrayList(
      new MyDto("a", 1, true), new MyDto("bc", 3, false));
    String jsonArray = mapper.writeValueAsString(listOfDtos);

    CollectionType javaType = mapper.getTypeFactory()
      .constructCollectionType(List.class, MyDto.class);
    List<MyDto> asList = mapper.readValue(jsonArray, javaType);
 
    assertThat(asList.get(0), instanceOf(MyDto.class));
}

One final note is that the MyDto class needs to have the no-args default constructor – if it doesn’t, Jackson will not be able to instantiate it:

com.fasterxml.jackson.databind.JsonMappingException: 
No suitable constructor found for type [simple type, class com.maixuanviet.jackson.ignore.MyDto]: 
can not instantiate from JSON object (need to add/enable type information?)

4. Conclusion

Mapping JSON arrays to java collections is one of the more common tasks that Jackson is used for, and these solutions are vital to getting to a correct, type-safe mapping.

The implementation of all these examples and code snippets can be found in our GitHub project – this is a Maven-based project, so it should be easy to import and run as it is.

Related posts:

Map Interface trong java
Spring Boot Tutorial – Bootstrap a Simple Application
Java Program to Perform Addition Operation Using Bitwise Operators
Introduction to Spring Data JPA
JWT – Token-based Authentication trong Jersey 2.x
Using Spring ResponseEntity to Manipulate the HTTP Response
Hướng dẫn Java Design Pattern – Null Object
Spring Boot - Enabling Swagger2
Giới thiệu Google Guice – Injection, Scope
Transactions with Spring and JPA
Create Java Applet to Simulate Any Sorting Technique
Java Program to Implement ConcurrentHashMap API
Converting Between Byte Arrays and Hexadecimal Strings in Java
Spring Boot - Twilio
Java – Byte Array to Reader
Java Program to Find Nearest Neighbor for Dynamic Data Set
Java Program to Perform Quick Sort on Large Number of Elements
Java Program to Check whether Graph is a Bipartite using 2 Color Algorithm
Guide to Spring 5 WebFlux
Apache Commons Collections BidiMap
Java Program to Construct a Random Graph by the Method of Random Edge Selection
RestTemplate Post Request with JSON
The SpringJUnitConfig and SpringJUnitWebConfig Annotations in Spring 5
Get and Post Lists of Objects with RestTemplate
Java Program to Find Hamiltonian Cycle in an UnWeighted Graph
Java Program to Implement Skew Heap
Java Program to Find the Shortest Path from Source Vertex to All Other Vertices in Linear Time
Java Program to Solve any Linear Equations
Java Program to Implement RoleUnresolvedList API
Java Program to Check if a Directed Graph is a Tree or Not Using DFS
Quick Guide to @RestClientTest in Spring Boot
Java Program to Implement Interval Tree