Looking for suggestions for an efficient way to maintain basic audit fields for entities in AppEngine for Java (via objectify). The @PrePersist attribute looks like a good option for various date fields (dateCreated, dateModified, dateDeleted) but I'm also looking to store the ID of the user who created, modified, deleted the entity as well. Is this best left to the data access layer?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you need to store records with more than just the dates you mention you probably want to create an audit object and use @Embed to store it inside of the objects you're auditing. Then use @PrePersist to update this object. That will give you a consistent audit framework across objects. |
|||||||||||
|
|
IMHO You also might want to use objectify's polymorphism - this way you could have a base class containing all audit fields and perform saving. Than all classes needing audit would just extend this base class. |
|||
|
|