Grails Url Mapping 404

时间:2011-03-04 16:33:45

标签: grails groovy url-mapping

我有这个:

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" )
}

我可以点击action1action2,但我无法点击action3,因为它会返回404

发生了什么事?

2 个答案:

答案 0 :(得分:1)

def method(){

}

无效。

def method = {


}

会工作。

答案 1 :(得分:0)

你检查了你的观点代码吗?我想如果它无法编译,你将获得404。 至少,这就是我的经历。