ObjectMapper Implementation Details: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * ObjectMapper")
 
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:


* [[Jackson_ObjectMapper#Implementation_Details|ObjectMapper]]
* [[Jackson_ObjectMapper#Implementation_Details|ObjectMapper]]
=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. 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.