I have a problem in my custom deserializer in Jackson. I want to access the default serializer to populate the object I am deserializing into. After the population I will do
I was not ok with using BeanSerializerModifier
since it forces to declare some behavioral changes in central ObjectMapper
rather than in custom deserializer itself and in fact it is parallel solution to annotating entity class with JsonSerialize
. If you feel it the similar way, you might appreciate my answer here: https://stackoverflow.com/a/43213463/653539