skip to Main Content

Json Deserialization of string "2023-11-10 23:01:18.940" to calendar

I am trying to deserialize json String date to Calendar and deserialization is working however it is not what i want. Current Behaviour @JsonProperty("systemDt") @JsonFormat(Pattern="yyyy-MM-dd HH:mm:ss.SSS") Calendar responseDateTime; Deserializes to responseDateTime=java.util.GregorianCalendar[time=1141556400000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC"...... I want a Simple Calendar Date of the format…

VIEW QUESTION
Back To Top
Search