我正在尝试使用本教程运行我的应用程序: http://guides.grails.org/building-a-react-app/guide/index.html
有git存储库 https://github.com/tetar998/building-a-react-app/tree/master/complete
但我坚持这个错误 无法解析名为'grailsDispatcherServlet'的servlet中名为'/ index'的视图
我目前正在与之合作 - groovy 2.4.11 - java 8u152 - grails 3.3.0
package demo
class UrlMappings {
static mappings = {
"/$controller/$action?/$id?(.$format)?"{
constraints {
// apply constraints here
}
}
"/"(view: '/index')
"500"(view: '/error')
"404"(view: '/notFound')
}
}
有什么建议吗?