ObjectMapper Implementation Details: Difference between revisions
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
=Organizatorium= | =Organizatorium= | ||
Default Date deserialization is done with <code>com.fasterxml.jackson.databind.deser.std.DateDeserializer</code>. | Default Date deserialization is done with <code>com.fasterxml.jackson.databind.deser.std.DateDeserializer</code> and <code>com.fasterxml.jackson.databind.deser.std.StdDeserializer</code>. They handle the situation when there's a custom format or not. If there is no custom format, <code>com.fasterxml.jackson.databind.util.StdDateFormat</code> is used. It does '''clone''' it to avoid threading issues. |
Latest revision as of 17:19, 14 November 2018
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.