Setting up Play 2.4.0 with Postgres and HikariCP yields configuration error
问题 I'm trying to set up a play framework server with a connection to a local postgres. My current applications.conf is like this: dbplugin=disabled db { default { dataSourceClassName=org.postgresql.ds.PGSimpleDataSource dataSource { user="postgres" password="postgres" databaseName="timeseries" serverName="localhost" } hikaricp { connectionTestQuery = "SELECT 1" } } } My build.sbt has only the newest jdbc for postgres added: lazy val root = (project in file(".")).enablePlugins(PlayJava)