我一直在尝试学习Grails,但是我遇到了以下问题。我创建了四个域类(Receipts,Items,Categories和Owners),并为每个域类创建了四个控制器(ReceiptsController,ItemsController,CategoriesController和OwnersController)。域和控制器都在com.receipts包中。
在每个控制器中,我只有以下内容:
package com.receipts
class ReceiptsController {
static scaffolding = Receipts
}
但是,当我启动服务器(localhost:8080)时,我收到以下错误,对于四个控制器中的每一个:
"The requested resource (/Receipts/receipts/index) is not available"
有谁知道这里发生了什么?我还尝试了脚手架的以下格式:
......那些也行不通。我也尝试为Receipts域类生成视图,但这也没有做任何事情。也没有清理项目。
谢谢!
答案 0 :(得分:3)
正确的代码是
static scaffold = true