Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到 grails-audit 插件提供了记录 onCreate() onUpdate() 事件的方法,但我还需要跟踪 onLoad() 事件。
有没有使用任何插件的标准方法?还是我需要自己实现?
您可以将 onLoad 闭包添加到域类。它将在第一次从数据库加载对象时执行。
class Foo { int bar; def onLoad = { // onLoad fired } }