あなたの問題は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
Spring Frameworkからのものです:org.springframework.beans.propertyeditors.CustomDateEditor
。
これがお役に立てば幸いです。