Replies: 1 comment 1 reply
-
Which Play version are you using? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Working on application based on Java play framework, task is to replace legacy date java.util.Date to java8 java.time.LocalDatetime in the whole application. But there is issue with the form binding when a Date attribute changed to LocalDateTime .
FE send the data as
Form is like that
in the old code dob is a java.util.Date object
Request is received in the following controller
gives validation error
even tried with following annotations in the form but still no succes
date Deserialization during the form binding failing , Its really hard to debug and see whats happening inside Playframwork
So how to bind a java 8 LocalDateTime in the form?
Beta Was this translation helpful? Give feedback.
All reactions