active questions tagged envers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:37:22Zhttp://stackoverflow.com/feeds/tag/envershttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1764048/nullpointerexception-at-org-hibernate-envers-event-auditeventlistener-generatebid0NullPointerException at org.hibernate.envers.event.AuditEventListener.generateBidirectionalCollectionChangeWorkUnits(...)Daniel Bleisteiner2009-11-19T15:20:22Z2009-11-21T21:36:04Z
<p>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... but this time I'm stuck.</p>
<p>When inserting some entity into the database I get the following exception:</p>
<pre><code>Caused by: java.lang.NullPointerException
at org.hibernate.envers.event.AuditEventListener.generateBidirectionalCollectionChangeWorkUnits(AuditEventListener.java:108)
</code></pre>
<p>I'm not completly sure which entity causes this because it is fired during flush() and the complex application inserts many different entities within one larger transaction.</p>
<p>We are using some HibernateEventListener that fires right before that exception... so I suppose that entity is the cause. The persistence.xml is configured this way:</p>
<pre><code> <property name="hibernate.ejb.event.post-insert" value="com.xyz.hibernate.events.listeners.MyListener,org.hibernate.envers.event.AuditEventListener" />
</code></pre>
<p>If this is true than the entity is the following (excerpt):</p>
<pre><code>@Entity
@Table(name = Property.TABLE_NAME, uniqueConstraints = @UniqueConstraint(columnNames = { "ENTITY_ID", "DESCRIPTOR_ID", "PROMOLEVEL_ID" }))
public class Property extends AbstractEntity {
private static final long serialVersionUID = 1L;
public static final String TABLE_NAME = "E_BUSINESS_PROPERTIES";
public static final String PROPERTY_ENTITY = "entity";
public static final String PROPERTY_DESCRIPTOR = "descriptor";
public static final String PROPERTY_PROMOLEVEL = "promolevel";
@Audited
@ManyToOne(optional = false)
private ProjectPropertyDescriptor descriptor;
@Audited
@ManyToOne
private ExtendedEntity entity;
@Audited
@ManyToOne
private AbstractPromotionLevel promolevel;
@Audited
@OneToMany(cascade = { CascadeType.ALL }, mappedBy = PropertyValue.PROPERTY_PROPERTY)
private List<PropertyValue> propertyValues = new ArrayList<PropertyValue>();
// some accessors stripped!
}
</code></pre>
<p>Does anyone have an idea where to look for? As soon as we disable Envers everything works fine. But we need envers to generate a history of changes.</p>
http://stackoverflow.com/questions/1357460/cant-get-envers-to-work0Can't get Envers to workperemann2009-08-31T13:25:30Z2009-11-18T13:53:43Z
<p>Envers looks easy. Just add some hibernate properties in your persistence.xml (eventlisteners), and annotate the entities you want to audit.</p>
<p>I am testing this on an application using Hibernate. Here is some pom info:
- org.hibernate.hibernate-entitymanager:3.4.0.GA
- org.hibernate.hibernate-annotations:3.4.0.GA
- org.hibernate.hibernate:3.2.6.GA
- org.jboss.envers.jboss-envers:1.2.1.GA-hibernate-3.3</p>
<p>If I insert NO annotations, my app context is loaded fine. But if I insert one, I am unable to build EntityManagerFactory.
(...)
Caused by: java.lang.NullPointerException
at org.hibernate.envers.configuration.metadata.AuditMetadataGenerator.generateInheritanceMappingData(AuditMetadataGenerator.java:305)
at org.hibernate.envers.configuration.metadata.AuditMetadataGenerator.generateFirstPass(AuditMetadataGenerator.java:353)
at org.hibernate.envers.configuration.EntitiesConfigurator.configure(EntitiesConfigurator.java:87)
at org.hibernate.envers.configuration.AuditConfiguration.(AuditConfiguration.java:86)
at org.hibernate.envers.configuration.AuditConfiguration.getFor(AuditConfiguration.java:99)
at org.hibernate.envers.event.AuditEventListener.initialize(AuditEventListener.java:260)
at org.hibernate.event.EventListeners$1.processListener(EventListeners.java:198)
at org.hibernate.event.EventListeners.processListeners(EventListeners.java:181)
at org.hibernate.event.EventListeners.initializeListeners(EventListeners.java:194)</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/888426/getting-started-with-envers-hibernate-simple-and-complete-example2getting started with envers + hibernate (simple and COMPLETE example)Jason S2009-05-20T14:53:51Z2009-11-18T09:56:41Z
<p>I have Hibernate working and would like to try adding <a href="http://www.jboss.org/envers/" rel="nofollow">Envers audit/revision functionality</a> but can't seem to figure out what is required. (my example compiles and runs OK and I get the regular Hibernate functionality but no audit tables appear in my database.) Has someone out there done this before? Does it work with H2 database using HSQLDB dialect? Is there a simple and <strong>complete</strong> example program on the web?</p>
<p><strong>edit:</strong> let me rephrase slightly. In the end, I'd like my build process to create a .jar file, that I can install on a different computer, and with the appropriate .properties file and JDBC driver, will create (or allow me to create) the appropriate database tables if they are not already present. How can I do this?</p>
<p><strong>edit:</strong> well so far, if I want to run the ant task that Jamie B has suggested, I have to tweak my classpath so it finds the envers jar file and the <a href="http://stackoverflow.com/questions/952084/where-the-heck-is-org-hibernate-tool-ant-hibernatetooltask/952775#952775">hibernate-tools</a> jar file that is buried inside the Hibernate tools zip. And I still haven't gotten things working. If/when I do, I think maybe then I can create an SQL file and put it as a resource within my final .jar file, that then I can use from within my program itself. (although a red flag goes off in my head thinking about security issues... hmm....)</p>
http://stackoverflow.com/questions/1683276/hibernate-envers-throws-auditexception0Hibernate Envers throws AuditExceptionunknown (google)2009-11-05T20:14:02Z2009-11-05T20:31:47Z
<p>I am using Envers to get related entity (say entityB) for a given entity (say entityA) for a given version of enityA. I am comparing revision number of entityA with the related entity ie entityB (numbers will be same if they are in same transaction) and coming out with the revision number of entityB. </p>
<p>Then I query enitityB like: </p>
<pre><code>reader1.createQuery().forRevisionsOfEntity(Bank.class, false, true)
.add(AuditEntity.id().eq(id))
.add(AuditEntity.revisionNumber().eq(entityRevisionNum))
.getSingleResult();
</code></pre>
<p>But I get the exception posed below. I've also tried: <code>reader1.find(classVar, id, entityRevisionNum);</code> but it didn't work.</p>
<p>Here is the stack trace. Does anybody have any idea what caused this exception?</p>
<blockquote>
<p>org.hibernate.envers.exception.AuditException:
This criterion can only be used on a
property that is a relation to another
property.
at org.hibernate.envers.query.criteria.RelatedAuditExpression.addToQuery(RelatedAuditExpression.java:53)
at org.hibernate.envers.query.impl.EntitiesAtRevisionQuery.list(EntitiesAtRevisionQuery.java:81)
at org.hibernate.envers.query.impl.AbstractAuditQuery.getSingleResult(AbstractAuditQuery.java:104)
at org.hibernate.envers.entities.mapper.relation.OneToOneNotOwningMapper.mapToEntityFromMap(OneToOneNotOwningMap
per.java:74)
at org.hibernate.envers.entities.mapper.MultiPropertyMapper.mapToEntityFromMap(MultiPropertyMapper.java:117)
at org.hibernate.envers.entities.mapper.SubclassPropertyMapper.mapToEntityFromMap(SubclassPropertyMapper.java:66
)
at org.hibernate.envers.entities.mapper.SubclassPropertyMapper.mapToEntityFromMap(SubclassPropertyMapper.java:66
)
at org.hibernate.envers.entities.EntityInstantiator.createInstanceFromVersionsEntity(EntityInstantiator.java:93)</p>
<pre><code> at org.hibernate.envers.query.impl.RevisionsOfEntityQuery.list(RevisionsOfEntityQuery.java:126)
at org.hibernate.envers.query.impl.AbstractAuditQuery.getSingleResult(AbstractAuditQuery.java:104)
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1647894/does-hibernatetemplate-work-with-envers-if-so-how2Does HibernateTemplate work with Envers? If so, how?chester2009-10-30T03:34:33Z2009-10-30T05:20:04Z
<p>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.</p>
<p>I configured Envers under JPA, and after a few tweaks I was able to have the schema generated by the EnversHibernateToolTask Ant task (including the auditing tables). However, when I write code such as:</p>
<pre><code> hibernateTemplate.saveOrUpdate(f);
</code></pre>
<p>the data is persisted, but nothing goes to the auditing tables. Conversely, if I write:</p>
<pre><code> EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
em.persist(f);
em.getTransaction().commit();
</code></pre>
<p>then data goest to the audit tables (but I'd rather use the former syntax - I know using JPA's EntityManager decouples that code from Hibernate, but it simple does not pay off the hassle - changing ORM engine is not in my wildest dreams for this project.)</p>
<p>It may help to check my <code>applicationContext.xml</code> configuration:</p>
<pre><code><bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="projetox" />
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="showSql" value="true" />
</bean>
</property>
</bean>
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="com.w2it.projetox.model" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
</props>
</property>
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
...
</bean>
</code></pre>
<p>and here is my <code>persistence.xml</code> setup:</p>
<pre><code><persistence-unit name="projetox" transaction-type="RESOURCE_LOCAL">
<jta-data-source>java:/DefaultDS</jta-data-source>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" />
<!-- Hibernate Envers -->
<property name="hibernate.ejb.event.post-insert"
value="org.hibernate.envers.event.AuditEventListener" />
<property name="hibernate.ejb.event.post-update"
value="org.hibernate.envers.event.AuditEventListener" />
<property name="hibernate.ejb.event.post-delete"
value="org.hibernate.envers.event.AuditEventListener" />
<property name="hibernate.ejb.event.pre-collection-update"
value="org.hibernate.envers.event.AuditEventListener" />
<property name="hibernate.ejb.event.pre-collection-remove"
value="org.hibernate.envers.event.AuditEventListener" />
<property name="hibernate.ejb.event.post-collection-recreate"
value="org.hibernate.envers.event.AuditEventListener" />
</properties>
</persistence-unit>
</code></pre>
<p>Does anyone have a hint on what is going on here? Thank you!</p>
http://stackoverflow.com/questions/1378648/gui-for-history-recorded-by-envers0GUI for history recorded by Enverscontexte2009-09-04T11:20:54Z2009-09-04T11:39:08Z
<p>Some time ago we began to record all changes of our EJB3 entities with the help of Envers framework.</p>
<p>And now the question is - what GUI can we suggest to users to view this history.</p>
<p>The main requirements are:</p>
<ul>
<li>rather easy to implement (cause
viewing history is not a service with
very high priority)</li>
<li>easy for users enough that they will
not call to programmer to interpret
what they see on the screen.</li>
</ul>
<p>Let's say we have entity Person and entity Phone, associated with Person by one-to-many relationship. In Person we have the method List getPhones() . In our system we mostly work with entity Person. So it's preferably that in GUI users could find history by person, not by concrete phone.</p>
<p>In current version of Envers we can't traverse relations when selecting entities at a given revision. So it will be rather hard to create "full" revision of entities (like Person including phones), guessing that we have many different entity classes with different mappings.</p>
<p>So, another variant is working with such composite entity like with set of tables. For example we can show the form with tabs, on each tab we have the history of one table (for example Person and Phone) and give users an opportunity to locate the concrete revision at each tab. </p>
<p>How do you show your history in GUI? Are there some common ways for that?</p>
http://stackoverflow.com/questions/1033375/difficulties-getting-a-simple-envers-example-to-work-problem-341difficulties getting a simple envers example to work: problem #34Jason S2009-06-23T15:38:53Z2009-08-08T22:16:27Z
<p>I'm trying to get a simple <a href="http://www.jboss.org/envers/" rel="nofollow">envers</a> example to work. I have the Java code working (apparently), and I finally <a href="http://stackoverflow.com/questions/952908">got the org.hibernate.tool.ant.EnversHibernateToolTask to work</a>, but it only outputs SQL for the "regular" data, not the versioning data. I'm stumped for what to do next.</p>
<p>What might I be forgetting to include?</p>
<p>Here is the SQL it outputs: {versioning-ddl.sql}</p>
<pre><code>create table Event (
id bigint generated by default as identity (start with 1),
date timestamp,
title varchar(255),
primary key (id)
);
create table Person (
id bigint generated by default as identity (start with 1),
age integer not null,
firstname varchar(255),
lastname varchar(255),
primary key (id)
);
create table PersonEvent (
eventID bigint not null,
personID bigint not null,
primary key (eventID, personID)
);
alter table PersonEvent
add constraint FK489E5C25F6E47374
foreign key (personID)
references Event;
alter table PersonEvent
add constraint FK489E5C25729F3820
foreign key (eventID)
references Person;
</code></pre>
<p>I don't see any history tables/fields. Here are the relevant entries in my hibernate.cfg.xml file:</p>
<pre><code><hibernate-configuration>
<session-factory>
...
<property name="hibernate.ejb.event.post-insert">org.hibernate.envers.event.AuditEventListener</property>
<property name="hibernate.ejb.event.post-update">org.hibernate.envers.event.AuditEventListener</property>
<property name="hibernate.ejb.event.post-delete">org.hibernate.envers.event.AuditEventListener</property>
<property name="hibernate.ejb.event.pre-collection-update">org.hibernate.envers.event.AuditEventListener</property>
<property name="hibernate.ejb.event.pre-collection-remove">org.hibernate.envers.event.AuditEventListener</property>
<property name="hibernate.ejb.event.post-collection-recreate">org.hibernate.envers.event.AuditEventListener</property>
<mapping class="com.example.test.hibernate.test1.Event"/>
<mapping class="com.example.test.hibernate.test1.Person"/>
</session-factory>
</hibernate-configuration>
</code></pre>
<p>and relevant portions of Java classes:</p>
<pre><code> @Entity
@Audited
public class Event {
@Id
@GeneratedValue
private Long id;
private String title;
private Date date;
...
}
@Entity
@Audited
public class Person {
@Id
@GeneratedValue
private Long id;
private int age;
private String firstname;
private String lastname;
...
}
</code></pre>
http://stackoverflow.com/questions/952908/stumbling-blocks-galore-while-trying-to-run-org-hibernate-tool-ant-envershibernat0stumbling blocks galore while trying to run org.hibernate.tool.ant.EnversHibernateToolTaskJason S2009-06-04T20:29:06Z2009-08-02T02:24:13Z
<p>I'm trying to run org.hibernate.tool.ant.EnversHibernateToolTask as suggested in the <a href="http://www.jboss.org/envers/downloads/" rel="nofollow">rather terse guide to Envers</a> (2nd line of table, Documentation has a link to a PDF). Here's my ant task tweaked so it successfully finds org.hibernate.tool.ant.EnversHibernateToolTask and org.hibernate.tool.ant.HibernateToolTask; now it can't find org.apache.tools.ant.Task and I have the sinking feeling I am doing something wrong.</p>
<pre><code><target name="schemaexport" depends="init"
description="Exports a generated schema to DB and file">
<taskdef name="hibernatetool"
classname="org.hibernate.tool.ant.EnversHibernateToolTask"
classpath=".;C:\appl\Java\jre6u13\lib\ext\envers-1.2.0.ga-hibernate-3.3.jar;C:\appl\Java\jre6u13\lib\ext\hibernate-tools.jar" />
<!--classpathref="${schema.classpath}"/>-->
<hibernatetool destdir=".">
<classpath>
<fileset refid="lib.hibernate" />
<path location="${build.dir}" />
</classpath>
<jpaconfiguration persistenceunit="ConsolePU" />
<hbm2ddl
drop="false"
create="true"
export="false"
outputfilename="versioning-ddl.sql"
delimiter=";"
format="true"/>
</hibernatetool>
</target>
</code></pre>
<p>I've never done a custom ant task before so I'm probably missing something really simple. Any suggestions? I don't know what to put for the classpath in the hibernatetool task, which I can't find any documentation for beyond <a href="https://www.jboss.org/files/envers/api-new/org/hibernate/tool/ant/EnversHibernateToolTask.html" rel="nofollow">rudimentary javadoc</a>.</p>
<p><strong>edit:</strong> ok, some specific Q's to try to get to this piecemeal...</p>
<ol>
<li>which jar is <code>org.apache.tools.ant.Task</code> supposed to be in, and why can't ant find it?</li>
<li>where are the docs on how to use HibernateToolTask? (I assume EnversHibernateToolTask is supposed to work the same)</li>
</ol>
<p><strong>update</strong> (2009-06-18): OK, I finally screwed up my courage to try to make some progress on this and made some headway. I can get it to almost work by doing two things:</p>
<ol>
<li>run <code>ant schemaexport</code> from the command line, rather than from within Eclipse, to run my <code>schemaexport</code> target. (ant in Eclipse can't seem to find org/apache/tools/ant/Task and I don't know how to set the Ant classpath in eclipse (distinct from the classpath in the taskdef item; somehow I have to tell ant to use a classpath to find its own damn class when it runs a custom task. this is insane.... grrr...) </li>
<li><p>ensuring my classpath contains all the jars that I just take for granted by sticking in my JRE's <code>/lib/ext</code> directory:</p>
<ul>
<li>envers-1.2.0.ga-hibernate-3.3.jar</li>
<li>hibernate3.jar</li>
<li>hibernate-tools.jar</li>
<li>slf4j-log4j12-1.5.6.jar</li>
<li>slf4j-api-1.5.6.jar </li>
<li>log4j-1.2.15.jar</li>
</ul></li>
</ol>
<p>Now I get a new problem: </p>
<blockquote>
<p>BUILD FAILED
C:\deka\proj\java\test-database\build.xml:61:
Problems in creating a configurati on
for JPA. Have you remembered to add
hibernate EntityManager jars to the
class path ?</p>
</blockquote>
<p>[[[[[scream]]]]]</p>
<p><strong>update</strong> It appears I also needed </p>
<ul>
<li>hibernate-entitymanager.jar</li>
<li>hibernate-annotations.jar</li>
</ul>
<p>and I STILL get classloader errors:</p>
<pre><code>BUILD FAILED
java.lang.NoClassDefFoundError: javax/persistence/PersistenceException
at java.lang.Class.getDeclaredConstructors0(Native Method)
at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
at java.lang.Class.getConstructor0(Class.java:2699)
at java.lang.Class.newInstance0(Class.java:326)
at java.lang.Class.newInstance(Class.java:308)
at org.hibernate.tool.ant.JPAConfigurationTask.createConfiguration(JPACo
nfigurationTask.java:33)
at org.hibernate.tool.ant.ConfigurationTask.getConfiguration(Configurati
onTask.java:54)
</code></pre>
<p>How can I run this w/o having to use a J2EE server?!?!?!?!?!? What other JAR files do I need? I am really confused and frustrated.</p>
<p><strong>update</strong> (2009-06-23): I <em>finally</em> got a successful build. Seems like you need:</p>
<pre><code>* envers-1.2.0.ga-hibernate-3.3.jar
* hibernate3.jar
* hibernate-tools.jar
* slf4j-log4j12-1.5.6.jar
* slf4j-api-1.5.6.jar
* log4j-1.2.15.jar
* dom4j-1.6.1.jar
* hibernate-commons-annotations.ja
* a JAR containing JTA classes (Sun doesn't have a JAR file but you can download the [class files][3] yourself and make a JAR file out of it)
* a JAR containing JPA classes (I used toplink-essentials.jar from the glassfish project, per [this SO question][4])
* commons-logging-1.1.1.jar
* freemarker.jar
</code></pre>
<p>and made sure to use </p>
<pre><code><annotationconfiguration configurationfile="${some_path}/hibernate.cfg.xml"/>
</code></pre>
<p>instead of the <code><jpaconfiguration></code> item included in the sample ant task. It still doesn't work properly though, I don't get the envers tables included. :(</p>
http://stackoverflow.com/questions/898529/populate-envers-revision-tables-with-existing-data-from-hibernate-entities5Populate envers revision tables with existing data from Hibernate Entitiesqbn2009-05-22T15:38:30Z2009-07-15T08:30:50Z
<p>I'm adding envers to an existing hibernate entities. Everything is working smoothly so far as far as auditing, however querying is a different issue because the revision tables aren’t populated with the existing data. Has anyone else already solved this issue? Maybe you’ve found some way to populate the revision tables with the existing table? Just thought I’d ask, I'm sure others would find it useful. </p>
http://stackoverflow.com/questions/1102365/unable-to-add-custom-logging-data-in-revinfo-in-envers0Unable to add custom logging data in REVINFO in enversAnony2009-07-09T07:32:33Z2009-07-09T07:32:33Z
<p>I am trying to use Envers for implementing Audit trails. Its creating the audit table Person_AUD and entering the audit data as well. But, when i am trying to add custom fields that is updated by to it, nothing happens.</p>
http://stackoverflow.com/questions/1020545/what-the-heck-is-a-jpa-configuration0what the heck is a JPA configuration?Jason S2009-06-20T00:02:40Z2009-06-23T15:00:22Z
<p>I'm going nuts trying to get a simple <a href="http://www.jboss.org/files/envers/docs/index.html" rel="nofollow">Envers</a> example to work. I'm stuck on the <code>org.hibernate.tool.ant.EnversHibernateToolTask</code> — it looks like I finally got all the jar files I needed, but now I get the error message </p>
<pre><code>[hibernatetool] Persistence unit not found: 'ConsolePU'.
BUILD FAILED
C:\deka\proj\java\test-database\build.xml:61: Persistence unit not found: 'ConsolePU'.
</code></pre>
<p>As far as I can tell, persistence units are associated with JPA <code>persistence.xml</code> files. But I'm not using a persistence.xml file; I'm using hibernate.cfg.xml — but the envers example has a <code><jpaconfiguration></code> in the ant task:</p>
<pre><code><hibernatetool destdir=".">
<classpath>
<fileset dir="src/">
<include name="**/*.hbm.xml"/>
</fileset>
<path location="${buildDir}" />
</classpath>
<jpaconfiguration persistenceunit="ConsolePU" />
<hbm2ddl
drop="false"
create="true"
export="false"
outputfilename="versioning-ddl.sql"
delimiter=";"
format="true"/>
</hibernatetool>
</code></pre>
<p>is there something that I can replace it with to get it to work with the hibernate.cfg.xml file? There seems to be ZERO documentation on how to get all this stuff to work properly. </p>
<p><strong>edit:</strong> OK, so the main problem was I didn't understand the hibernatetool options and what was appropriate for my app. I did find the <a href="https://www.redhatrenewals.com/docs/en-US/JBoss%5FDeveloper%5FStudio/en/hibernatetools/html/ant.html" rel="nofollow">Hibernate ant docs</a>, fortunately. Thanks. Now I have a new problem: I'm using annotations, but I also have set up a hibernate.cfg.xml for the properties settings. The <code>hibernatetool</code> task only lets me run either <code><configuration /></code> or <code><annotationconfiguration /></code> not both, and even <code><configuration /></code> won't work since I already have annotations doing things. How can I migrate my property settings from the hibernate.cfg.xml file to my annotations?</p>
<p><strong>edit:</strong> Duh, I didn't realize you just do:</p>
<pre><code><annotationconfiguration configurationfile="...filename..." />
</code></pre>
<p>per the <a href="https://www.redhatrenewals.com/docs/en-US/JBoss%5FDeveloper%5FStudio/en/hibernatetools/html/ant.html#d0e3018" rel="nofollow">hibernatetool task docs.</a></p>
http://stackoverflow.com/questions/793674/get-the-entity-previous-version-in-hibernate-envers0Get the entity previous version in Hibernate Enversrazenha2009-04-27T14:12:52Z2009-06-12T05:38:36Z
<p>I have an entity loaded by Hibernate (via EntityManager)</p>
<pre><code>User u = em.load(User.class, id)
</code></pre>
<p>This class is auditaded by Hibernate Envers. I want to load the previous version of this class. How can I do it?</p>
<p>Thanks</p>