Estou desenvolvendo uma aplicação com spring boot 2.1.5, e estou enviando um objeto JSON para meu controller e esse objeto tem data. Mas quando eu envio esta dando um erro:
2019-06-21 08:48:32.334 WARN 9480 — [nio-8080-exec-3] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type
java.time.LocalDate
from String “01/06/2019”: Failed to deserialize java.time.LocalDate: (java.time.format.DateTimeParseException) Text ‘01/06/2019’ could not be parsed at index 0; nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of typejava.time.LocalDate
from String “01/06/2019”: Failed to deserialize java.time.LocalDate: (java.time.format.DateTimeParseException) Text ‘01/06/2019’ could not be parsed at index 0
Ja fiz pesquisas nos foruns mas não consegui revolver meu problema.