Aspect Oriented Audit Logging with Spring and Hibernate | Cagatay Civici's Weblog
Audit logging is one of the important concerns in huge applications and usually treated as some kind of a non-functional requirement. I mean a software may work with or without an audit logging infrastructure, the thing is when it plays an important role in a software, design problems may likely to occur because it does not seem to be easy to change the design of the software to enable audit logging at first glance.
In our project, there is a layered architecture where spring is located at business/service layer and hibernate at DAO layer. At first this architecture was not designed considering stuff like audit logging or security. But the good news is that, since these are cross-cutting concerns, they can be easily integrated in an Aspect Oriented Way. Audit Logging could also be solved for simple systems using database triggers in an old school fashion but I can't imagine how hard it could be to create and maintain it. Master Kenan created a high level base infrastructure to enable audit logging and I've worked on it for some time to make it ready for integration to our project modules. The ingridients are the following;
* IAuditable: Marker interface which domain object must implement.
* AuditLogger: Spring bean to do the audit logging job.
* ServiceAuditLogInterceptor: Spring's MethodInterceptor that intercepts the calls to service beans.
* EntityAuditLogInterceptor: Hibernate's interceptor to intercept the transactions.
* Commons attributes: Attributes to define the audit log types for service methods. JAVA5 annotations should do the job too.
* AuditLogRecord: A persistent object to hold the audit logs. It has types like service_level_save, service_level_update, entity_level_save and etc.
Read full article from Aspect Oriented Audit Logging with Spring and Hibernate | Cagatay Civici's Weblog
No comments:
Post a Comment