Skip to content
Advertisement

Mapping to “” instead of null Jackson

I have a function that reads XML from a Kafka topic into String format, which I then want to convert to a JSON Object.

Example XML:

JavaScript

I then have POJO Classes such as: (with lombok getter/setter/toString and jackson annotation imports)

JavaScript
JavaScript

I am then using a MappingJackson2XmlHttpMessageConverter to get an Object Mapper, and using that to map the XML string to an Example class.

JavaScript

This results in an Example Class with the following:

JavaScript

I want member1 to be null, instead of an empty string. How can I accomplish this?

Advertisement

Answer

You need to implement your own com.fasterxml.jackson.databind.util.Converter which will convert your value after deserialisation but before setting to required form.

Example implementation:

JavaScript

And you need to instruct Jackson to use it:

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