我在Heroku上连接数据库PostgreSQL时遇到问题。
发生错误: 意外异常[SQLTimeoutException:等待连接1000ms后的超时。]
我的“Procfile”:
web: target/universal/stage/bin/blog -Dhttp.port=${PORT} -Ddb.default.url=${DATABASE_URL}
我的数据库配置来自application.conf:
slick.dbs.default {
driver="slick.driver.PostgresDriver$"
db.driver = "org.postgresql.Driver"
db.url="jdbc:postgresql://localhost/blog"
db.user="rumata"
db.password="rumata"
}