当 grails 尝试编译项目时会发生这种情况,当使用 --stacktrace 和 --verbose 时,它会显示相同的输出。我试图重新安装插件和 grails。我正在使用 grails 2.4.3
这是错误:
Running without daemon...
Compiling 230 source files
Parent process shutdown. Exiting...
Error Forked Grails VM exited with error
当 grails 尝试编译项目时会发生这种情况,当使用 --stacktrace 和 --verbose 时,它会显示相同的输出。我试图重新安装插件和 grails。我正在使用 grails 2.4.3
这是错误:
Running without daemon...
Compiling 230 source files
Parent process shutdown. Exiting...
Error Forked Grails VM exited with error
你的问题是你不知道什么是错的。为了找到真正的问题,我建议您在grails-app/conf/BuildConfig.groovy中更改参数: grails.project.fork :
grails.project.fork = [
compile: false,
test: false,
run: false,
war: false,
console: false
]
再试一次,你会发现真正的问题。
grails-app/conf/BuildConfig.groovy
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.
runtime 'mysql:mysql-connector-java:5.1.27'
// runtime 'org.postgresql:postgresql:9.3-1100-jdbc41'
// runtime 'mysql:mysql-connector-java:5.1.40'
}
我有同样的问题,可能是一些数据库问题检查您是否有正确的转储或转到 C:\Users\Your-pc.grails\2.4.4\ 并删除 .slcache 文件夹并重新尝试再次运行应用程序。
第一次遇到此错误时,我删除了项目并再次导入。它解决了。下次我从中删除目标文件夹和文件。m2 文件夹。有效。