आपकी समस्या JSON से संबंधित नहीं है, स्टैकट्रेस के अनुसार समस्या यह है कि BeanWrapperFieldSetMapper
कन्वर्ट करना नहीं जानता 05-12-1988 12:34:45
एक java.util.Date
. तक . आपको इसे इस तरह कस्टम दिनांक संपादक के साथ कॉन्फ़िगर करने की आवश्यकता है:
CustomDateEditor customDateEditor = new CustomDateEditor(/* your DateFormat here */);
HashMap<Class, PropertyEditor> customEditors = new HashMap<>();
customEditors.put(Date.class, customDateEditor);
fieldSetMapper.setCustomEditors(customEditors);
CustomDateEditor
स्प्रिंग फ्रेमवर्क से है:org.springframework.beans.propertyeditors.CustomDateEditor
।
आशा है कि यह मदद करता है।