有没有办法记录来自
的urlmappingstatic mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"/"(view:"/index")
"500"(view:'/error')
}
需要跟踪$ controller,$ action,$ id。
答案 0 :(得分:2)
在拦截器中,您可以引用controllerName
,actionName
和params.id
并使用该信息执行任何操作,包括记录。