0

我想在AWS Ubuntu實例上運行一個簡單的HelloWorld grails應用程序。該代碼可以發現在:https://github.com/paulnguyen/cloud/tree/master/grails/helloworld-grailsJava HotSpot(TM)64位服務器VM警告:忽略選項UseSplitVerifier;支持被刪除在Grails中的8.0錯誤

我已經安裝了以下的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上部署這個簡單的應用程序。

回答

0

查看application.properties文件,看起來helloworld項目是爲Grails 2.4.3而不是3.1.1編寫的。基本上,您使用的是錯誤版本的grails,需要使用舊版本。

相關問題