How to put envers annotations into XML Mapping Metadata(orm.xml) file

岁酱吖の 提交于 2019-12-17 20:34:03

问题


In my application, I am using XML Mapping Metadata as an alternative to annotation. It worked fine for all the JPA annotations so far. However for Auditing, I am using Hibernate Envers. I am declaring
@Audited
@AuditTable("LOAN_APPLICANT_AUDIT")
The only problem is how to put these annotations in XML mapping metadata form. There is a requirement that the user should specify the list of tables, which needs to be audited.
Plus he should be also able to configure the name of AUDIT tables according to his needs.
The last step is that the particular column names inside a table which needs to be audited should be configurable.


回答1:


Currently that's not possible. Envers works by annotating POJOs only. There is a JIRA ticket to enable XML config, but it doesn't look like that feature will come anytime soon:

https://hibernate.atlassian.net/browse/HHH-3887

Anyway, if you want to use Envers, you'll have to go with annotations.



来源:https://stackoverflow.com/questions/17781057/how-to-put-envers-annotations-into-xml-mapping-metadataorm-xml-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!