Closed
Description
We added JaVers to one of our projects for managing the history of our database entities. As history support was not a feature desired from the beginning, we used Spring to manage auditing information using the @CreatedDate
and LastModifiedDate
annotations on properties of type Instant
. As database we are using PostgreSQL and using TIMESTAMPTZ
as our field type.
We were wondering why there was a difference between these timestamps and the ones JaVers creates for each commit. Digging into the code, I see that you have a DateProvider
interface which is explicitly using LocalDateTime
. Was there a reason why this was explicitly limited to that type?