1

我正在使用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 
4

1 回答 1

1

1.2.x 中有一个错误,在案例类中带有私有 val,导致您在此处看到的错误。这已在 1.3.0 中修复,应该可以解决您的问题。

(如果它不是私人 val,您需要发布您的SalesRecord对象供我们查看,我将使用解决方案更新此答案)。

于 2016-02-19T23:13:53.090 回答