compile ("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
in build.gradle
and then following annotations helped:
@JsonDeserialize(using = LocalDateDeserializer.class)
@JsonSerialize(using = LocalDateSerializer.class)
private LocalDate birthday;
Update: if you are using Spring Boot 2.*, the dependency is already included via one of the "starters".
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…