我正在尝试使用光滑的3.1连接MySQL数据库做scala应用程序 在Typesafe提供的演示中,此代码用作application.conf:
h2mem1 = {
url = "jdbc:h2:mem:test1"
driver = org.h2.Driver
connectionPool = disabled
keepAliveConnection = true
}
我在ampps apache服务器上运行MySQL数据库,现在我对作为url和驱动程序输入的内容感到困惑,以便我的应用程序可以连接到数据库? 我的网址应该是" localhost"?
答案 0 :(得分:3)
这样的事情:
database = {
url = "jdbc:mysql://localhost/test"
user = "user"
password = "pwd"
driver = com.mysql.jdbc.Driver
connectionPool = disabled
keepAliveConnection = true
}