When executing a Criteria Query in hibernate, I get the following exception:
javax.persistence.PersistenceException: javax.persistence.PersistenceException: org.
In my case it was a problem with java.time.LocalDate
from Java 8, and I forgot to assign a converter to that specific attribute.
It seems that the newer Versions (5.2.1Final) has a built in converter, so that can help if your are not bound to a specific version.
But checking the Annotations is definitely the way to go, but I would check them all.