我试图在AWS实例上运行一个简单的HelloWorld grails应用程序。代码可以在:https://github.com/paulnguyen/cloud/tree/master/grails/helloworld-grails上找到。
我安装了grails和java的以下版本:
| Grails Version: 3.1.1
| Groovy Version: 2.4.5
| JVM Version: 1.8.0_65
我正在导航到这个github存储库的主根目录,并试图运行"grails编译“。它提供了一个错误,如:Java HotSpot(TM) 64-Bit Server VM warning: ignoring option UseSplitVerifier; support was removed in 8.0 ( Error occurred running Grails CLI: null (Use --stacktrace to see the full trace))
有人能告诉我我哪里出了问题吗?我是不是在执行部署步骤时出错了?我需要在AWS上部署这个简单的应用程序。
发布于 2016-03-04 21:54:18
查看application.properties文件,看来helloworld项目是为Grails2.4.3而不是3.1.1编写的。基本上,您使用了错误的grails版本,并且需要使用旧版本。
https://stackoverflow.com/questions/35626385
复制相似问题