Skip to content
Advertisement

How to serialize a class that extends TreeSet with Jackson?

Class A looks like this:

JavaScript

Class B:

JavaScript

When I serialize a class A object using Jackson:

JavaScript

I get a json Array like this:

JavaScript

but the member variables a,b,c are missing. Is there a way I can include them into the json string?

Advertisement

Answer

Jackson recognises class A as a collection and register CollectionSerializer to serialise A‘s instances. We can modify default serialiser and provide custom serialiser. We can use BeanSerializerModifier to do that and reuse collection serialiser in custom implementation. To generate valid JSON you need to provide property name for set values.

Example:

JavaScript

Above code prints:

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