Welcome

Audit Logging at Service Level

What is Service Level Auditing? Many enterprise business applications have such requirements that they should log their users’ operations; who performs and when, records that are inserted into, deleted from database, or are changed during those operations, with a meaningful description about current state of those records. Hibernate already provides an interceptor mechanism at SessionFactory level. […]

Experiences with Audit Logging through Hibernate Interceptor

In  our current project, we make use of Hibernate Interceptor in order to perform auditing to track operations performed with our domain objects. We at first simply followed instructions in Hibernate In Action book. Basically,  steps are as follows; Declare an Auditable interface, and methods in it for what kind of information you want to […]