1

我将 slick-pg 0.8.2 与 Slick 2.1.0 一起使用,并且在使用 JSON 类型的列时遇到问题。

我的驱动程序定义如下:

trait PgsqlDriver extends PostgresDriver
                          with PgJsonSupport
                          with array.PgArrayJdbcTypes
                          with PgDateSupportJoda
                          with PgSearchSupport {
  override val pgjson = "jsonb"

  override lazy val Implicit = new ImplicitsPlus { }
  override val simple = new SimpleQLPlus {}

  trait ImplicitsPlus extends Implicits
                              with DateTimeImplicits
                              with JsonImplicits
                              with SearchImplicits

  trait SimpleQLPlus extends SimpleQL
                             with ImplicitsPlus
                             with SearchAssistants
}

object PgsqlDriver extends PostgresDriver

这是我的 Table 类(它是抽象的,因为我有几个具有相同结构的表,并且我从这个表中继承):

private[ pgsql ] abstract class PgsqlTable[ D <: DomainObject[ D ] ](tag: Tag, tableName: String)
    extends Table[ JsonBean ](tag, tableName) {
  import PgsqlDriver.simple._

  def id = column[ String ]("ID", O.PrimaryKey)
  def json = column[ JsonString ]("JSON", O.NotNull)

  override def * = (id, json) <> (JsonBean.tupled, JsonBean.unapply)
}

据我所知,这完全是根据 slick-pg 网站上的测试、示例和文档。但是,我收到以下编译错误def json =

Error:(23, 34) could not find implicit value for parameter tm:     scala.slick.ast.TypedType[com.github.tminglei.slickpg.JsonString]
  def json = column[ JsonString ]("JSON", O.NotNull)
                             ^
4

1 回答 1

0

知道了!我的问题在最后一行,object PgsqlDriver extends PostgresDriver而不是extends PgsqlDriver.

于 2015-04-21T12:30:49.970 回答