I have successively integrated Envers in one of my project to record modification. We have a user table with column score (double), salary(double) etc. I only want to monitor all the changes in user score. I added @Audited on score column it has started auditing user score, but there is one issue i am facing even when user salary gets modified it is auditing user score. It seems that it is doing record level auditing. I only want to audit when there is a change in user score. Do anybody knows how to do it? does envers support it? any help will be appreciated.
|