在 Play for Scala standalone 中将 application.conf 放在哪里?
Where to put application.conf in Play for Scala standalone?
我在 Play for Scala 中独立使用 Slick(即不是 Web 应用程序)。将 application.conf 文件放在哪里以便 Slick 获取数据库配置?
我在 main/resources/application.conf 中尝试过,但它不起作用。这是我的目录结构:
这是我遇到的错误:
Exception in thread "main"
com.typesafe.config.ConfigException$Missing: No configuration setting
found for key 'dbControl'
和appplication.conf:
dbControl = {
url = "jdbc:mysql://localhost:3306/control0001"
driver = com.mysql.jdbc.Driver
connectionPool = disabled
keepAliveConnection = true
user=root
password=xxxx
}
这对我有用,直接将 application.conf 放入 src/main/scala 文件夹。
我在 Play for Scala 中独立使用 Slick(即不是 Web 应用程序)。将 application.conf 文件放在哪里以便 Slick 获取数据库配置?
我在 main/resources/application.conf 中尝试过,但它不起作用。这是我的目录结构:
这是我遇到的错误:
Exception in thread "main" com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'dbControl'
和appplication.conf:
dbControl = {
url = "jdbc:mysql://localhost:3306/control0001"
driver = com.mysql.jdbc.Driver
connectionPool = disabled
keepAliveConnection = true
user=root
password=xxxx
}
这对我有用,直接将 application.conf 放入 src/main/scala 文件夹。