Json string from LocalDateTime(java 8) in Spring MVC
问题 have trouble in LocalDateTime(Java 8) Formatting in Spring MVC framework my VO is like under code in mySQL w_date field is DATETIME and recode like "2015-12-25 23:18:22" public class HistoryBoard { @JsonFormat(pattern="yyyy-MM-dd") @DateTimeFormat(iso = DateTimeFormat.ISO.TIME) private LocalDateTime w_date; public LocalDateTime getW_date() { return w_date; } public HistoryBoard setW_date(String w_date) { DateTimeFormatter sdf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.S"); this.w_date