문제

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