2

我已经编写了这段代码来使用 circe 读写 josn

import io.circe._, io.circe.generic.auto._, io.circe.parser._, io.circe.syntax._
case class Foo(i: Int)
val f = Foo(10)
val json = f.asJson.toString
val t1 = decode[Foo](json)

这很好用。但是如果我创建一个普通的类 Bar

class Bar { var i : Int = 0 }
decode[Bar](json)

现在我得到错误

 could not find implicit value for evidence parameter of type io.circe.Decoder[$sess.cmd25.Bar]

那么是否可以使用普通类并使用 Circe 从 json 解码它们?

4

1 回答 1

6

使用io.circe.generic.auto._,您正在使用 Circe 的自动泛型派生,它由 Shapeless 的类型类支持LabelledGenericLabelledGeneric仅适用于元组和案例类等产品类型。这就是您看到此错误的原因,因为 Circe 的自动模式无法为您的普通类自动派生 Decoder 实例。您可以做的是为您的班级手动实现解码器(请参阅自定义编码器/解码器部分)。

于 2017-04-12T16:51:16.800 回答