Skip to content
Advertisement

Jackson serializes Enum to NAME not value (XML) Java

I have this Enum defined:

JavaScript

I have a model object that has a OutputFormatEnum variable called OutputFormat. When I set this variable to OutputFormatEnum.PDF, it is initially registered as “pdf” which is what it should be. When I then execute the following code:

JavaScript

It sets the value of OutputFormat in streamTemplate to “PDF”, where it should be “pdf” (the value of OutputFormatEnum.PDF). Any idea as to why this is happening?

Advertisement

Answer

You need to add @JsonValue to the getValue() method so that this method is used by Jackson to serialize the instance:

JavaScript

Given that you are serializing this to XML, you might need to use @XmlValue instead:

JavaScript

In addition to this, you need to enable the support for the standard JAXB annotations as follows:

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