我正在将grails 1.3.7与审核日志记录插件一起使用。我想在日志中捕获用户登录事件,例如“user.PSam登录。”,并且由于插件未定义onLoad事件,因此我将其添加到域类中,并在此事件中填充自己的审核表条目。
所以在grails用户域类中,我做如下

def onLoad = {
        try {
         Graaudit aInstance = new Graaudit();
         aInstance.eventType= "User Log in"
         aInstance.eventDescription = "User logged in"
         aInstance.user_id = username
         aInstance.save(flush:true);
          println "username="+username
          println aInstance;
        }
        catch (e){
            println(e.getMessage())
        }
    }

我在这里有两个问题...
1)在此域类中定义为属性的username属性显示为null
2)它抛出一个异常说:No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here
这里还有其他方法吗?
还可以使用插件audi_log表填充我的onLoad()事件条目?

提前致谢

最佳答案

在事务中包装逻辑:

def onLoad = {
   Graaudit.withTransaction {
      try {
       Graaudit aInstance = new Graaudit();
       aInstance.eventType= "User Log in"
       aInstance.eventDescription = "User logged in"
       aInstance.user_id = username
       aInstance.save();
        println "username="+username
        println aInstance;
      }
      catch (e){
        println(e.getMessage())
      }
    }
}

10-08 02:04