基于IBM Java 1.6上安装了grails 2.01.建立hello wrold app的时候部署遇到问题:
[main] ERROR digester.Digester - Parse Fatal Error at line -1 column -1: Premature end of file
Message: Premature end of file
[main] ERROR startup.ContextConfig - Parse error in application web.xml file at file:/C:/Users/<myAccountName>/.grails/2.0.0/projects/TM/resources/web.xml
Message: Premature end of file
换了个低版本1.3.8 OK
具体怎么解决可以参考这个帖子,
http://jira.grails.org/browse/GRAILS-8731
修改项目下grails-app\conf\BuildConfig.groovy
grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits("global") {
// uncomment to disable ehcache
// excludes 'ehcache'
excludes 'serializer'
}