1. Hibernate Audit Logging coderanch.comHi all... Am facing a critical problem with audit logging using hibernate.. Heres the hierachy of class (Invoice System) that i have. 1. Invoice (Object) 1.1 Line Item (List) 1.1.1 Account Distribution (List) 1.1.2 Additional Charge (List) 1.1.2.1 Account Distribution (List) 1.2 Invoice Level Additional Charge (List) 1.2.1 Account Distribution (List) The problem that occurs is that incase i am updating/deleting ... |
2. Audit Logging forum.hibernate.orgHi , Please help me with this requirement in Audit Logging. I'm using life cycle methods of interceptor for logging. I'm using Spring Transaction and the method i'm invoking to persist the entity object is getHibernateTemplate().merge(). Before calling this method, i need to set a property to the entity object. But this property is an unmapped property. i.e.; its not present ... |
3. Help with audit logging - getting userid from HttpSession??? forum.hibernate.orgHello all, I'm a newbie to Hibernate, so I'm hoping this is an easy problem. Basically, I have a web application that uses Tapestry, Spring and Hibernate (v3.1). I have an event interceptor that gets called on every save-update event for audit logging. I am able to log everything except the user_id, which is stored as an attribute in the httpsession. ... |
4. Audit Log forum.hibernate.orgHi All, We are using "AuditLogInterceptor" to log our changes to the database. This object loads all the changes into the "Audit_Log" table in the database, except the field with multiple values. (Ex: counties). The AuditLogInterceptor doesn't include the code to load the multi value fields into the database. Does anybody please tell me how to do this? I will include ... |
5. Hibernate Audit Logging forum.hibernate.orgHi Gurus, I have a requirement to implement Audit logging at every level from controller to entity level. I need to log previous state,new state values ,created,modified,user etc. in a seperate table I hv googled and found interceptors and event based approaches. But people say there are problems in getting old values using interceptors and with event based, one can not ... |
6. hibernate listener issue while using the audit logging forum.hibernate.org |