Play 2.x framework Deploy on Heroku 应用报错

Play 2.x framework Deploy on Heroku application error

我正在 heroku 上部署我的 play 框架应用程序,使用默认的内存数据库在本地 运行 很好,但是当我尝试使用 postgres 在 heroku 上部署它时,heroku 编译源文件并启动应用程序成功,但我无法打开我的应用程序并收到“应用程序错误”。我尝试了这个建议 here,因为日志文件表明它与网站图标有关,但它没有用。我被卡住了,非常感谢前面的任何 help/suggestion/road。

我的过程文件:

web: target/universal/stage/bin/assistu -Dhttp.port=${PORT}  -DapplyEvolutions.default=true -Ddb.default.driver=org.postgresql.Driver -Ddb.default.url=${DATABASE_URL} ${JAVA_OPTS}

heroku 日志说:

2015-02-13T10:54:16.519634+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx384m -Xss512k -Dfile.encoding=UTF-8 -Djava.rmi.server.useCodebaseOnly=true

2015-02-13T10:54:16.886676+00:00 app[web.1]: Bad application path: -Xss512k

2015-02-13T10:54:17.581062+00:00 heroku[web.1]: Process exited with status 0

2015-02-13T10:54:17.596535+00:00 heroku[web.1]: State changed from starting to crashed

2015-02-13T10:54:18.819896+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=My-appname-5156.herokuapp.com request_id=f17c2b9f-7c05-4057-9efe-df99c4e792ea fwd="145.94.146.87" dyno= connect= service= status=503 bytes= 2015-02-13T10:54:20.051663+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=My-appname-5156.herokuapp.com request_id=41636ffd-49d7-41af-ae4f-6f36d615f0f3 fwd="145.94.146.87" dyno= connect= service= status=503 bytes=

问题已解决,我所拥有的只是在 application.conf 文件中禁用进化并在 PostgreSQL 上手动应用脚本仍然存在一些问题。