ObjectMapper Implementation Details
Jump to navigation
Jump to search
Internal
Organizatorium
Default Date deserialization is done with com.fasterxml.jackson.databind.deser.std.DateDeserializer
and com.fasterxml.jackson.databind.deser.std.StdDeserializer
. They handle the situation when there's a custom format or not. If there is no custom format, com.fasterxml.jackson.databind.util.StdDateFormat
is used. It does clone it to avoid threading issues.