Hi,
I believe I have quite specific question. Is there a path in which I could customize the Jackson deserializer in a way that for every unknown property it would populates object internal map with it's value?
Example: Simple Java POJO:
class SomeEntity {
String attribute1;
String attribute2;
Map<String, Object> additionalAttributes;
}
I know that on high level Jackson allows me to either enable or disable failing on unknown properties through FAIL_ON_UNKNOWN_PROPERTIES option, though is there any extendable way to customize this behaviour?
Thanks in advance.