I am using Hibernate as my orm in my application.

Now I want to integrate it with Envers. At present I am generating entity using hbm files. In that case how can I mention in hbm file that generate class must have @Audited annotation.

Thanks,
Narendra

link|improve this question

29% accept rate
feedback

1 Answer

You don't need to mention it in the HBM. In fact, I think it's not even possible to map Envers-specific behavior for entities in HBM files. But don't worry: you can mix HBM mapping with Envers annotations. You just need to remember to correctly configure Hibernate's main config file, as specified in the Envers documentation: http://docs.jboss.org/hibernate/envers/3.6/reference/en-US/html_single/#config-basics

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.