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
Jackson 2.12 added a safety feature #2683 which will block attempts to read/write java.time.* values if no explicit value serializer/deserializer found (which implies Java 8 date/time module is not registered).
While this makes sense on its own, it does have the downside that it is not possible to pass such values as opaque/embedded/POJO values, to use via ObjectMapper.convertValue() for example, or store in JsonNode.
Such use can be useful for some processing pipelines, and seems like it should be allowed.