Play Framework 部署失败:“尚未设置应用程序机密,我们处于生产模式。您的应用程序不安全”

AJM*_*AJM 3 java heroku playframework

我在 Heroku 上部署了一个使用 Play Framework 开发的 Web 应用程序。部署失败返回此错误:

[error] p.a.l.c.CryptoConfigParser - The application secret has not been set, and we are in prod mode. Your application is not secure. 
Run Code Online (Sandbox Code Playgroud)

“我们处于生产模式”是什么意思?在哪里设置模式?我必须改变它,因为它不是生产环境。

谢谢

AME*_*AME 6

把它放到你的 conf/application.conf

玩 2.5

play.crypto.secret="changethissosomethingsecret"
Run Code Online (Sandbox Code Playgroud)

玩 2.6+

play.http.secret.key="changethissosomethingsecret"
Run Code Online (Sandbox Code Playgroud)

您还可以使用带有密钥作为参数的源启动您的应用程序。

  • 现在已弃用。Play 推荐使用```play.http.secret.key = "changethissosomethingsecret"``` (2认同)