-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@JsonDeserialize(converter = ...)
does not work with Records
#3297
Comments
Yes, unfortunately there are issues with Annotation applicability for |
I wish you luck and hope rewrite goes well :) Thank you for your incredible effort in maintaining and evolving this project! |
Thank you @gavlyukovskiy! I really appreciate your feedback & hope I can be worth the praise! :) |
@cowtowncoder There is also an issue with |
Describe the bug
@JsonDeserialize(converter = ...)
on Record's fields isn't picked up by Jackson during deserialization. I'm using this converter to parse time without zone information intoInstant
field.Version information
Jackson: 2.13, 2.13.1-SNAPSHOT
JDK: 17
To Reproduce
Additional context
It looks similar to #2974 and workaround to add
@JsonProperty("time")
works here as well:The text was updated successfully, but these errors were encountered: