Given a string of JSON, and a case class that corresponds to it, what's a simple way to parse the JSON into the case class? There are many libraries available, but it seems that Scala might now do this out of the box.
What about if the JSON should be parsed into a list of the case class?
UPDATE:
Jerkson seems to be abandoned, and I don't want to install the full Play or Lift framework or anything else heavy.
Use spray-json as it is small.
Download spray-json into sbt using this build.sbt:
lazy val root = (project in file(".")). settings( name := "jsonExample", libraryDependencies += "io.spray" %% "spray-json" % "1.3.2" )