I search for a way to get a list of Objects created on a certain LocalDateTime date saved in the Postgresql database in a field of type TIMESTAMPTZ.
To do so, I tried to
Your current solution is fine. But in @Query you can cast column using DATE()
@Query
DATE()
@Query(value = "SELECT * FROM Entity u WHERE DATE(creation_date) = ?1", nativeQuery = true) List findByCreationDate(LocalDate date);