Вопрос

How can I configure the postgresql to play framework in java i already downloaded the postgresql-9.3-1101.jdbc4.jar file.

Thank you!

Это было полезно?

Решение

Edit "build.sbt" file:

libraryDependencies ++= Seq(
  javaJdbc,
  javaEbean,
  cache,
  "org.postgresql" % "postgresql" % "9.3-1100-jdbc41"
)

See also http://www.scala-sbt.org/release/docs/Getting-Started/Library-Dependencies.html#managed-dependencies

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top