Skip to content
Advertisement

Cannot construct instance of – Jackson

I am using Jackson and I’m having problems, when I try to deserialize an Object I get the following error:

JavaScript

I am having problems in the attribute:

JavaScript

Could anyone help me?

Advertisement

Answer

You cannot instantiate an abstract class, Jackson neither. You should give Jackson information on how to instantiate MyAbstractClass with a concrete type.

See this answer on stackoverflow: Jackson JSON library: how to instantiate a class that contains abstract fields

And maybe also see Jackson Polymorphic Deserialization

Advertisement