我正在尝试使用Lift-Json解析JSON。我关注此链接:http://alvinalexander.com/scala/scala-json-arreay-aray-parser-parser-parsing-example-lift-json。我遇到以下错误:
error while loading DefaultFormats, Scala signature DefaultFormats has wrong version
[error] expected: 5.0
[error] found: 4.1 in DefaultFormats.class
我如何摆脱它?
由于使用了错误版本的Lift-Json而出现此错误。使用与Scala版本兼容的正确版本。以下依赖性解决了与Scala 2.11
兼容版本引起的问题 <dependency>
<groupId>net.liftweb</groupId>
<artifactId>lift-json_2.11</artifactId>
<version>3.0.1</version>
</dependency>
我希望这可以帮助任何人在将来得到同样的问题。