def MyFun(result: ListBuffer[(String, DateTime, List[(String, Int)])]):
String = {
val json =
(result.map {
item => (
("subject" -> item._1) ~
("time" -> item._2) ~
("student" -> item._3.map {
student_description=> (
("name" -> lb_result._1) ~
("age" -> lb_result._2)
)
})
)
}
)
val resultFormat = compact(render(json))
resultFormat
}
错误1: org.joda.time.DateTime =>没有隐式视图。 org.json4s.JsonAST.JValue。(" subject" - > item._1)〜
错误2:类型为Nothing的分散隐式扩展=> org.json4s.JsonAST.JValue以trait JsonDSL中的方法seq2jvalue开头 val resultFormat = compact(render(json))
答案 0 :(得分:6)
我在 json4s-ext 中暗示 joda-time 支持,但只导入此子模块不会解决您的问题。
JsonDSL用于创建JValues
,序列化程序仅用于将JValues
转换为JSON,反之亦然(序列化和反序列化)。
如果我们尝试用DateTime
:
val jvalue = ("subj" -> "foo") ~ ("time" -> DateTime.now)
我们得到同样的错误:
error: No implicit view available from org.joda.time.DateTime => org.json4s.JsonAST.JValue.
就像我说的那样,当我们使用JsonDSL创建DateTime
时,不使用来自 json4s-ext 的JValues
的序列化器。
您可以创建隐式函数DateTime => JValue
或执行DateTime.now.getMillis
或DateTime.now.toString
之类的操作,分别创建JInt
或JString
,但为什么我们会这样做?如果joda时间序列化器已经存在,重新发明轮子?
我们可以引入一些案例类来保存result
中的数据,然后json4s可以为我们序列化它们:
import scala.collection.mutable.ListBuffer
import com.github.nscala_time.time.Imports._
import org.json4s._
import org.json4s.JsonDSL._
import org.json4s.native.JsonMethods._
import org.json4s.native.Serialization
import org.json4s.native.Serialization.{read, write}
implicit val formats =
Serialization.formats(NoTypeHints) ++ org.json4s.ext.JodaTimeSerializers.all
case class Lesson(subject: String, time: org.joda.time.DateTime, students: List[Student])
case class Student(name: String, age: Int)
val result = ListBuffer(("subj", DateTime.now, ("Alice", 20) :: Nil))
val lessons = result.map { case (subj, time, students) =>
Lesson(subj, time, students.map(Student.tupled))
}
write(lessons)
// String = [{"subject":"subj","time":"2015-09-09T11:22:59.762Z","students":[{"name":"Alice","age":20}]}]
请注意,您仍然需要像Andreas Neumann解释的那样添加 json4s-ext 。
答案 1 :(得分:0)
正如Peter Neyens所说的那样,为了序列化org.joda.time.DateTime
,你需要使用ext包
https://github.com/json4s/json4s#extras
因此请将此依赖项添加到build.sbt
libraryDependencies += "org.json4s" %% "json4s-ext" % "3.2.11"