我无法使用application.conf
中的此代码连接到db:
db.default.driver=org.postgresql.Driver
db.default.url="jdbc:postgres:my_db123_dev"
db.default.user=my_user
db.default.password=123
错误:play.api.Configuration$$anon$1: Configuration error[Cannot connect to database [default]]
我没有在那里指定localhost
,因为默认情况下它应该是。
答案 0 :(得分:1)
我认为postgresql
中应该是postgres
,而不是db.default.url
。
另外,虽然下面的内容可能并不重要,但这是最好的做法:
db.default.url
更改为jdbc:postgresql://localhost/my_db123_dev
(拥有localhost总是很好)。