0
我最近將我的Play App部署到Heroku服務器。在生產模式下運行的應用程序導致以下錯誤每個DB-表:Play框架不適用生產模式下的演變
Caused by: javax.persistence.PersistenceException: Query threw SQLException:ERROR: relation "tablename" does not exist
Procfile
web: target/universal/stage/bin/myApp -Dhttp.port=${PORT} -DapplyEvolutions.default=true -DapplyDownEvolutions.default=false -Ddb.default.driver=org.postgresql.Driver -Ddb.default.url=${DATABASE_URL}
我有同樣的問題,部署在另一個應用程序(非的Heroku)服務器。通過首先在開發模式下運行以應用模式並切換到生產來解決此問題。