是否还有其他配置用于url映射以使其正常工作?
当我在浏览器中输入错误的网址时,Chrome控制台会显示错误
GET http://localhost:8081/aaa 404 (Not Found)
编辑:
在Grails控制台中我看到:
INFO myApp.ProjectController - Entering Action /project/index
但是error.gsp
视图没有重定向。我试图改变:"404"(view:'/')
但没有成功。
注意 我在该项目中使用Angularjs,但暂时只在一个页面中使用。
感谢您的帮助
UrlMappings.groovy
class UrlMappings {
static mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"404"(view:'/error')
}