I am working with jpa and hibernate and i'm trying to store the creation/update/deletion time for each item managed by JPA.
I need something like Hibernate Envers, but just store the last time, not all the revisions and I would like to store that data in a separate table (cause this data are not part of the item itself but belong to an optional syncronization process that need to know the last modify time for each item).
As now i can capture all events using jpa @EntityListeners, but now i don't know how to persist these information to a database table. I would like to not define a item_history table entity, but generate and acces them at runtime like envers does.
is that possible ?