jackson-module-model-versioning icon indicating copy to clipboard operation
jackson-module-model-versioning copied to clipboard

Jackson 2.x module to support versioning and transforming of modules.

Results 6 jackson-module-model-versioning issues
Sort by recently updated
recently updated
newest added

Hi, Not sure if this library is maintained. But anyway for documentation purposes, I've encountered the following issue: ``` public static class NoopVersionedModelConverter implements VersionedModelConverter { @Override public ObjectNode convert(ObjectNode...

Implement secondary deserialization method, called in cases where POJO instance is created as part of deserialization, potentially after collecting some or all of the properties to set

Say for instance that you change your API by replacing a nested type with a reference. Then in your "pastConverter" you would probably need a database lookup. That would be...

Given the types `MySuperDto`, `MySubDto`, `MyEmptySubDto`, see below. For version 1 the super type added a the field `superField`, but was empty at version 0. Reading this Json, at version...

I have a versioned model class which has a field that i would like to use a custom serializer on: ``` @JsonVersionedModel(currentVersion = "1", toCurrentConverterClass = ToCurrentLoanPolicyOverrideConverter.class) public class LoanPolicyOverride...