Play framework + SLICK (Scalaquery) tutorial

后端 未结 2 1824
春和景丽
春和景丽 2021-02-02 14:57

Does anybody know of a good tutorial or a sample project (github) of using Play framework with SLICK (ScalaQuery)? I am struggling to make them work together.

I am getti

2条回答
  •  孤城傲影
    2021-02-02 15:14

    Using Play 2.1, with the latest Slick release (1.0.1-RC1), you'd use:

    val appDependencies = Seq(
      "com.typesafe.slick" %% "slick" % "1.0.1-RC1",
      ...
    }
    

提交回复
热议问题