我正在使用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)
^
答案 0 :(得分:0)
知道了!我的问题出在最后一行,object PgsqlDriver extends PostgresDriver
而不是extends PgsqlDriver
。