考慮在Hibernate
-managed實體此屬性:傑克遜和系列化的java.sql.Time /解串
@JsonFormat(pattern = "HH:mm")
@Column(name = "start_time")
private java.sql.Time startTime;
我發表JSON
-object爲@RequestBody
到Jackson
應該映射到一個Spring控制器實體實例(pojo)。
Jackson
也顯然不是設法時間字符串反序列化到一個java.sql.Time
,因爲我得到這個異常:
.w.s.m.s.DefaultHandlerExceptionResolver : Failed to read HTTP message:
org.springframework.http.converter.HttpMessageNotReadableException:
Could not read document: Can not construct instance of java.sql.Time,
problem: null
我怎麼能指示Jackson
明白做什麼?