我正在将 grails 1.3.6 应用程序升级到 2.2.4。在 1.3.6 中,通过点击 访问应用程序localhost:8080/APPNAME
。然后将文件呈现在grails-app/views/index.gsp
.
将应用程序升级到 2.2.4 后,点击localhost:8080/APPNAME'
返回错误:
HTTP Status 404 - "/index.gsp" not found.
.
我的 URLMappings 文件如下:
class UrlMappings
{
static mappings =
{
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"/"(view:"/index")
//"500"(view:'/error')
"500"(controller: 'pacErrors', action: 'handleErrors')
}
}
我可以通过 URL 调用直接访问控制器,因此服务器似乎已启动并正在运行。