我创建了一个简单的Grails 3.0.1应用程序,并通过导入build.gradle
文件将其加载到IntelliJ IDEA中。通过IDEA运行应用程序的推荐方法是执行Application.groovy
文件夹中的init
类。
这样就启动了应用程序,我可以浏览到#34;欢迎来到Grails"页面,但当我尝试访问我得到的任何控制器时:
This page contains the following errors:
error on line 7 at column 12: Opening and ending tag mismatch: meta line 0 and head
Below is a rendering of the page up to the first error.
default.list.label
在浏览器中。我有两个域类,并使用generate-all
生成控制器和视图。
我认为< gsp>中的某些内容失败了标签,但我不知道是什么。
如果我使用grails run-app
启动应用程序,则视图会正常运行,因此这是Application.groovy
特别存在的问题。