Não é possível construir uma instância de - Jackson

Eu estou usando Jackson e estou tendo problemas, quando tento desserializar um objeto eu recebo o seguinte erro:

com.fasterxml.jackson.databind.JsonMappingException: 
    Can not construct instance of net.MyAbstractClass, 
    problem: abstract types either need to be mapped to concrete types, 
        have custom deserializer, or be instantiated with additional type information

Estou com problemas no atributo:

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.WRAPPER_OBJECT, property = "@id")
@JsonSubTypes({ @JsonSubTypes.Type(value = MyAbstractClass.class, name = "MyAbstractClass") })
@ManyToOne
private MyAbstractClass object;

Alguém pode ajudar-me?

questionAnswers(2)

yourAnswerToTheQuestion