How to use SORM framework with Play Framework?

后端 未结 3 1353
清酒与你
清酒与你 2021-01-20 05:20

I find SORM very Interesting and promising but I cant find a way to Integrate It with play any guides?

3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-20 06:04

    Play was updated to use a new build file format

    Ref : Build.scala is not created in play

    You can continue from build.sbt file anymore

    ForEx:

    libraryDependencies ++= Seq(
      jdbc,
      cache,
      "org.sorm-framework" % "sorm" % "0.3.8",
      ws,
      specs2 % Test
    )
    

    For new usage :

    Using SORM with Play Framework 2.3.8

提交回复
热议问题