Replies: 2 comments 1 reply
-
|
mapper.serializationConfig() is available in Jackson 3 but it looks like the introspect method is not public any more |
Beta Was this translation helpful? Give feedback.
-
|
Right; internal property introspection Jackson (de)serializers use is not meant/designed to be accessible outside of serialization/deserialization context, although in practice in 2.x it was left more exposed. External introspection is meant to be exposed instead via |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Dears,
I would like to know how to port to Jackson 3 the following use case:
https://docs.hibernate.org/stable/validator/reference/en-US/html_single/#section-property-node-name-provider
The goal is to access JSON property names to properly format error messages.
In Jackson 2 the solution was to call the introspector:
Thanks
Beta Was this translation helpful? Give feedback.
All reactions