Log user changes to a form

2013-02-07 Thread Paul Bors
We have an enterprise web-app which is going through SAP qualification and a requirement has come through for our application’s settings changes to be logged. There are quite a number of pages for which now we must log the values of the form fields as they were before the user changed them and

Re: Log user changes to a form

2013-02-07 Thread Igor Vaynberg
if you are using hibernate here is envers...easier to do it on that level rather then ui... -igor On Thu, Feb 7, 2013 at 4:11 PM, Paul Bors p...@bors.ws wrote: We have an enterprise web-app which is going through SAP qualification and a requirement has come through for our application’s

Re: Log user changes to a form

2013-02-07 Thread Paul Bors
We're using a mixture of Hibernate with JDBC's DAOs. I guess I'm faced with either mapping the rest of the tables in Hibernate and using Envers or doing it in the UI. If I end up doing this in the UI, I guess I'll create a separate project and share it with the community for an AuditForm. ~