ObjectMapper Implementation Details: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
=Organizatorium= | =Organizatorium= | ||
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. | 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. |
Revision as of 17:18, 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.