Hi folks,
I started using Hibernate Envers natively and created my own RevisonInfo and REVINFO table. I used TIMESTAMP as data type for the RevisionTimestamp and mapped it to java.util.Date, which is fine for Hibernate.
Now we are starting to use spring-data-envers and run into the following issue:
RevisionMetadata expects the RevisionTimestamp to be either an Instant, LocalDateTime Long, while Hibernate supports only Long, java.util.Date or java.sql.Date.
I could switch to long, but I would prefer to keep a readable format in the database.
Is there any way out of this? I wonder why spring-data-envers, which wraps Hibernate Envers, is supporting different types.
Cheers,
Stefan