2
に文字列を解析:応答で春、私はこのようなモデルとフィールドを持っているのLocalDateTime
@Element(name = "TIMESTAMP")
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME)
private LocalDateTime date;
私が受け取っ:
<TIMESTAMP>2016-05-04T13:13:42.000</TIMESTAMP>
が、モデル化するために、XMLを解析中に、私はエラーを持っている:
:"message": "org.simpleframework.xml.core.PersistenceException: Constructor not matched for class java.time.LocalDateTime",
私もしてみました
これはまだ動作しません。何か案が ?私はspringframework.xml
libを使用しています。
どの版で提供されていますあなたは春のシオンですか? – Enigo
スプリングブート1.2.5.RELEASE、Spring 4.1.7.RELEASE – user3528733