0

我看到 grails-audit 插件提供了记录 onCreate() onUpdate() 事件的方法,但我还需要跟踪 onLoad() 事件。

有没有使用任何插件的标准方法?还是我需要自己实现?

4

1 回答 1

1

您可以将 onLoad 闭包添加到域类。它将在第一次从数据库加载对象时执行。

class Foo {
    int bar;

    def onLoad = {
        // onLoad fired
    }
}
于 2012-03-09T10:34:11.820 回答