Avro4S:找不到参数生成器的隐式值
Avro4S : Could not find implicit value for parameter builder
我正在使用 avro4s
https://github.com/sksamuel/avro4s
这段代码是我写的
implicit val schema = AvroSchema[SalesRecord]
val output = AvroOutputStream[SalesRecord](new File(outputLocation))
output.write(salesList)
output.flush
output.close
但是我得到一个编译时错误
could not find implicit value for parameter builder: shapeless.Lazy[....]
Not enough arguments for method apply
1.2.x 中有一个错误,在一个案例 class 中有私有值,这导致了您在此处看到的错误。这在 1.3.0 中已修复,应该可以解决您的问题。
(如果它不是私有值,您需要 post 提升您的 SalesRecord
对象,以便我们查看,我会用解决方案更新此答案)。
我正在使用 avro4s
https://github.com/sksamuel/avro4s
这段代码是我写的
implicit val schema = AvroSchema[SalesRecord]
val output = AvroOutputStream[SalesRecord](new File(outputLocation))
output.write(salesList)
output.flush
output.close
但是我得到一个编译时错误
could not find implicit value for parameter builder: shapeless.Lazy[....]
Not enough arguments for method apply
1.2.x 中有一个错误,在一个案例 class 中有私有值,这导致了您在此处看到的错误。这在 1.3.0 中已修复,应该可以解决您的问题。
(如果它不是私有值,您需要 post 提升您的 SalesRecord
对象,以便我们查看,我会用解决方案更新此答案)。