播放框架运行应用程序问题

2022-09-03 01:14:00

每当我尝试运行使用Play创建的新Web应用程序时,我都会收到以下错误。

Error occurred during initialization of VM
Could not reserve enough space for object heap

Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

答案 1

在 Play 框架 2.0.3 中,脚本需要替换以下命令的命令行参数<play framework install dir>\framework\build.bat

java -Xms512M -Xmx1024M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M %DEBUG_PARAM% -Dfile.encoding=UTF8 -Dplay.version="%PLAY_VERSION%" -Dsbt.ivy.home="%~dp0..\repository" -Dplay.home="%~dp0." -Dsbt.boot.properties="file:///%p%sbt/sbt.boot.properties" -jar "%~dp0sbt\sbt-launch.jar" %*

java -XX:+CMSClassUnloadingEnabled %DEBUG_PARAM% -Dfile.encoding=UTF8 -Dplay.version="%PLAY_VERSION%" -Dsbt.ivy.home="%~dp0..\repository" -Dplay.home="%~dp0." -Dsbt.boot.properties="file:///%p%sbt/sbt.boot.properties" -jar "%~dp0sbt\sbt-launch.jar" %*

答案 2

刚刚在我的Windows 8计算机上下载并解压缩了2.2.1。

按照Play框架网站上的文档,最终遇到了与你相同的问题。调整构建文件中的各种参数没有做任何事情,但:

java -XX:+CMSClassUnloadingEnabled %DEBUG_PARAM% -Dfile.encoding=UTF8 -Dplay.version="%PLAY_VERSION%" -Dsbt.ivy.home="%~dp0..\repository" -Dplay.home="%~dp0." -Dsbt.boot.properties="file:///%p%sbt/sbt.boot.properties" -jar "%~dp0sbt\sbt-launch.jar" %*

...解决了问题。我不知道其他人在哪里找到这个解决方案,但是在Play Framework网站上没有提到这个解决方案。事实上,没有任何迹象表明任何事情都可能出错。毕竟,它只是一个您需要解压缩的文件。

它现在正在运行,但是很难相信一个早期搞砸的框架。似乎作者没有在Linux之外的任何东西上进行测试。


推荐