我正在使用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
答案 0 :(得分:1)
1.2.x中存在一个错误,案例类中包含私有val,导致您在此处看到错误。这已在1.3.0中修复,应该可以解决您的问题。
(如果它不是私有的,您需要发布您的SalesRecord
对象供我们查看,我会用解决方案更新此答案)