Hi here i am using hibernate hbm file to all model class. Now I need to audit the details of that class. I tried to use hibernate envers. I had created a new class with @Audited annotation . Then i co
Doctrine 1.x and 2 both offer some kind of Versionable support in the form of a separate auditing table that tracks changes over time. However, the versions appear to be intended for per-row use (ie,
I am auditing my Java EE application with JBoss Evers and the nature of my application causes the audit table to grow very fast. The historic data is queried infrequently and access time is not really
I need to implement a revision system for articles in my grails web app. After searching grails forum, stackoverflow, grails plugins 开发者_Go百科and googling internet, I have ended up with 3 options:
I\'m having a problem getting Hibernate Envers to work in our environment. We are using Spring 3.x with LoadTimeWeaving. Below is our context file:
i have the two classes Person and Attribut, in short: @Entity @Indexed @Table(name=\"persons\") public class Person {
In my application, I have a several audited entity classes for example the following. It contains multiple HAS-IS relations to other entities with various hibernate annotations.
I am currently working with Hibernate Envers. How to delete entries in the audit table related to the entity I want to delete? My entity has no relation with other entities.
I\'m using Envers to audit different fields of my entities. The framework works in general but it seems to have problems with some kinds of entity mapping. All former problems I could solve myself...
I am trying to use Envers on a project that also uses Hibernate and Spring - and I appreciate a lot the code reduction offered by HibernateTemplate.