We are using Hibernate envers to store historical revisions of the data, there is a requirement to revert data to a certain revision. As we are using the Version column to use the optimistic locking a
I have a table with properties defined like this : @Column(name=\"\\\"SERIAL#\\\"\") When Hibernate inserts data, everything works fine.
I am working on an spring-hibernate-envers application. After lot of googling things are finally working for me but i have still got couple of questions.
I have kind of naive question related to envers. Can we name a audit table to something other then 开发者_JAVA技巧the default one, i.e., TableName_AUD and ya not just Prefix or suffix, full name.Yes,
In Hibernate Envers, all related collections of an entity are loaded lazily, regardless of what fetch type is set. So when auditquerying for an entity that has a collection of other entities (both aud
So I want to use sql lite in my new project. Also I wish to use envers. I w开发者_如何学Conder if hibernate for sql lite supports envers. Does it?Envers is part of hibernate, as you may know. And ther
I am working on a Spring and Hibernate web app. I have to use Envers for auditing. But when I am running the application only audit tables are created but no data is inserted to the audit tables.
Can any one help me how to solve these use cases for maker-checker functionality using envers. 1) Maker creates a request to create an entity (eg department)
I have a problem with Hibernate - Envers. I have a domain object with only one audited attribute status which can be one of the number开发者_如何学编程s 0,1,2,3,4,5.
I am currently testing hibernate envers and I am confused with its behavior. Sometimes when we do updates without doing any changes, it does not record an audit. But cur开发者_运维技巧rently, it does.