I'm trying to use Spring JPA with Envers to keep track of audit trail of all the entities so we can go back to a point in time and inspect what the entities. I can the basic as provided by the spring-jpa-envers api like find a/ll revisions.
However is it possible to:
to query for a revision with filters i.e apply filter of the entity fields? I guess we can apply filters once the revisions are return but would good find a revision from a point in time
update a particular revision? In case we had a incorrect revision in the past and wanted to correct it.
Regards AU
After some googling found the answer: