У меня есть это:
static mappings = {
"/a/b/$id/stuff"(controller: "stuff", action "action1" )
"/a/b/$id/stuff/$stuffId"(controller: "stuff", action "action2" )
"/a/b/$id/stuff/$stuffId/c"(controller: "stuff", action "action3" )
}
Я могу нажать action1
и action2
, но я не могу нажать action3
, так как он возвращает 404
.
Что происходит?