I want to store Date without time into my database. So, I choose to use LocalDate type.
LocalDate
As mentioned in this article, I use a JPA converter to convert
JPA 2.2 supports LocalDate, so no converter is needed.
Hibernate also supports it as of 5.3 version.
Check out this article for more details.