If i have a JSON
{"name":"jack","email":"[email protected]"}
now while mapping this JSON i want only name to be mapped in my case class, for example
case class Person(name:String)
How can we achieve this?
import spray.json._
case class Person(name: String)
object PersonFormat extends DefaultJsonProtocol {
implicit val personFormat = jsonFormat1(Person)
}
import PersonFormat._
val source = """{ "name":"jack", "email":"[email protected]" }"""
source.parseJson.convertTo[Person]
You need to define the JsonProtocol with a implicit val.