我正在尝试将几个类编码为json字符串,但无论我尝试什么,我的类似乎都找不到我正在使用的案例类的隐式编码器。
这是我能够减少的最小例子。
import io.circe._
import io.circe.generic.semiauto._
import io.circe.generic.auto._
import io.circe.syntax._
case class OneCol(value: String)
object testObject {
def main(args: Array[String]): Unit = {
val testVal = OneCol("someVal")
println(testVal.asJson)
}
}
这给出了以下编译错误
错误:(30,21)找不到参数编码器的隐含值: io.circe.Encoder [OneCol] 的println(testVal.asJson)
我尝试使用半自动编码器创建相同的东西
def main(args: Array[String]): Unit = {
implicit val enc : Encoder[OneCol] = deriveEncoder
val testVal = OneCol("someVal")
println(testVal.asJson)
}
出现以下错误
错误:(25,42)找不到类型的Lazy隐式值 io.circe.generic.encoding.DerivedObjectEncoder [A] 隐式val enc:Encoder [OneCol] = deriveEncoder
错误:(25,42)方法deriveEncoder的参数不够: (隐式编码: shapeless.Lazy [io.circe.generic.encoding.DerivedObjectEncoder [A]])io.circe.ObjectEncoder [A]。 未指定的值参数编码。 隐式val enc:Encoder [OneCol] = deriveEncoder
我很确定自动和半自动编码器生成的整个目的是处理这样的情况,所以我对我做错了什么感到有点失落。
如果版本信息相关,我使用scala 2.10.4和circe 0.7.0(circe-core_2.10,circe-generic_2.10工件),maven作为包管理器。
有谁知道为什么会失败,以及如何正确编译?
编辑:
这是我的POM中带有宏插件的部分。已经尝试了列出的两个编译器插件(注释和非注释),并且两者仍然给出相同的错误。
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<configuration>
<args>
<!-- work-around for https://issues.scala-lang.org/browse/SI-8358 -->
<arg>-nobootcp</arg>
</args>
<recompileMode>incremental</recompileMode>
<compilerPlugins>
<compilerPlugin>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_2.10.4</artifactId>
<version>2.1.0</version>
</compilerPlugin>
<!--<compilerPlugin>-->
<!--<groupId>org.scala-lang.plugins</groupId>-->
<!--<artifactId>macro-paradise_2.10.2</artifactId>-->
<!--<version>2.0.0-SNAPSHOT</version>-->
<!--</compilerPlugin>-->
</compilerPlugins>
</configuration>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile-first</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
答案 0 :(得分:1)
事实证明,circe-core_2.10依赖于scala版本2.10.6,这意味着我的scala版本(2.10.4)与库不兼容,导致问题。升级到适当版本的scala修复了这个问题。