Scala + Play Framework + Slick - Json 作为模型字段

Scala + Play Framework + Slick - Json as Model Field

我需要将 Json 字段保存为我的 Play Framework 模型的列。我在 DAO 中的 table 解析器是

    class Table(tag: Tag) extends Table[Model](tag, "tablename") {
      implicit val configFormat = Json.format[Config]

      // Fields ...
      def config = column[Config]("config", O.SqlType("JSON"))
      // Fields ...

    }

Config 在 Play Model 文件夹中的 Model 中被定义为案例 class 并且有他的伴生对象。此对象的字段是 Int、Double 或 String

    case class Config ( // fields )

    object Config {
      implicit val readConfig: Reads[Config] = new Reads[Config]
      for {
             // fields
      } yield Config(// fields)

      implicit val configFormat = Json.format[Config]

    }

问题是由于这个错误我无法编译

    Error:(28, 37) could not find implicit value for parameter tt:         
        slick.ast.TypedType[models.Config]
        def config = column[Config]("config", O.SqlType("JSON"))

有没有办法在Table中将Config模型保存为Json(读取为Config)?

您需要告诉 Slick 如何将您的 Config 实例转换为数据库列:

implicit val configFormat = Json.format[Config]
implicit val configColumnType = MappedColumnType.base[Config, String](
  config => Json.stringify(Json.toJson(config)), 
  column => Json.parse(column).as[Config]
)