Skip to content
Advertisement

How to de/serialize an immutable object without default constructor using ObjectMapper?

I want to serialize and deserialize an immutable object using com.fasterxml.jackson.databind.ObjectMapper.

The immutable class looks like this (just 3 internal attributes, getters and constructors):

JavaScript

However when I run this unit test:

JavaScript

I get this exception:

JavaScript

This exception asks me to create a default constructor, but this is an immutable object, so I don’t want to have it. How would it set the internal attributes? It would totally confuse the user of the API.

So my question is: Can I somehow de/serialize immutable objects without default constructor?

Advertisement

Answer

To let Jackson know how to create an object for deserialization, use the @JsonCreator and @JsonProperty annotations for your constructors, like this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement