从urlmapping跟踪$ controller,$ action,$ id

时间:2018-05-31 11:45:11

标签: grails

有没有办法记录来自

的urlmapping
static mappings = {
    "/$controller/$action?/$id?"{
        constraints {
            // apply constraints here
        }
    }

    "/"(view:"/index")
    "500"(view:'/error')
}

需要跟踪$ controller,$ action,$ id。

1 个答案:

答案 0 :(得分:2)

在拦截器中,您可以引用controllerNameactionNameparams.id并使用该信息执行任何操作,包括记录。