Posts by Michael Thiago • 21 points
2 posts
-
1
votes1
answer501
viewsA: Spring boot + jpa + Localdate
I decided as follows: @Component @ConfigurationPropertiesBinding public class LocalDateFormatter implements Converter<String, LocalDate> { @Override public LocalDate convert(String source) {…
-
0
votes1
answer501
viewsQ: Spring boot + jpa + Localdate
I am unable to configure the classes convert in spring boot to convert the date that comes from the view into String to the controler that expects a Localdate java8, Someone could give me a hint ?…