Find max revision of each entity less than or equal to given revision with envers

独自空忆成欢 提交于 2019-11-28 12:54:00

I think what you are looking for the AuditEntitry.revisionNumber.max() constraint. This should maximize the revision number satisfying the nested constraints.

See also the documentation on that matter.

I was looking for something similar but found a much better way to get what I wanted. It's taken a while to work this out today, but it makes sense now!

In my case I wanted to get entities at a particular date in the past. In Envers this means at a particular revision, as the revision is universal across all entities, not per entity.

So, the idea is to find the revision number from the date, and then fetch all entities at that revision. I think this is similar to what you are after.

AuditReader reader = AuditReaderFactory.get(this.entityManager);

Number latestRevAtDate = reader.getRevisionNumberForDate(convertedRunDate);

reader.createQuery()
      .forEntitiesAtRevision(MyEntity.class, latestRevAtDate)
      .add(AuditEntity.property("someEntityProperty").le("someValue"))
      .getResultList()

You only the individual entities instead of multiple revisions of each entity, and you get all entities that were in the system at the time of that revision.

This post helped a bit: https://developer.jboss.org/message/625074#625074

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!