You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m trying to use global attributes in Jackson 3 via JsonMapper.Builder.defaultAttributes(), but they don’t seem to take effect during deserialization.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I’m trying to use global attributes in Jackson 3 via
JsonMapper.Builder.defaultAttributes(), but they don’t seem to take effect during deserialization.Here is a minimal reproducible example:
Output:
This shows that only the per-call attribute (
$test3) set viaObjectReader.withAttribute(...)is visible.The global attributes configured through:
are not available in
DeserializationContext.This suggests that
defaultAttributes()onJsonMapper.Builderare not being applied (or propagated) during deserialization.Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions