Hi
I'm finding myself putting the following snippet in most of my entities:
It feels like this is something that belongs in Roo_Entity.aj and might be a neat option for entity creation. Any believers? Where would I RTFM if I wanted to attempt to do this (add this option to the entity command) myself?Code:@PrePersist protected void onCreate() { dateCreated = new Date(); } @PreUpdate protected void onUpdate() { lastUpdated = new Date(); }
-Steve


Reply With Quote