Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rendering JSON with Play! and Scala

I have a simple question regarding rendering JSON object from a Scala class. Why do I have to implemet deserializer ( read, write ).

I have the following case class:

case class User(firstname:String, lastname:String, age:Int)

And in my controller:

val milo:User = new User("Sam","Fisher",23);

Json.toJson(milo);

I get compilation error: No Json deserializer found for type models.User. Try to implement an implicit Writes or Format for this type.

In my previous project I had to implement a reader,writer object in the class for it to work and I find it very annoying.

object UserWebsite {
  implicit object UserWebsiteReads extends Format[UserWebsite] {

    def reads(json: JsValue) = UserWebsite(
      (json \ "email").as[String],
      (json \ "url").as[String],
      (json \ "imageurl").as[String])

    def writes(ts: UserWebsite) = JsObject(Seq(
      "email" -> JsString(ts.email),
      "url" -> JsString(ts.url),
      "imageurl" -> JsString(ts.imageurl)))
  }
} 
like image 213
Millad Avatar asked Nov 27 '12 23:11

Millad


2 Answers

I really recommend to upgrade to play 2.1-RC1 because here, JSON writers/readers are very simple to be defined (more details here)

But in order to help you to avoid some errors, I will give you a hint with imports: - use these imports only! (notice that json.Reads is not included)

import play.api.libs.json._
import play.api.libs.functional.syntax._
import play.api.libs.json.Writes._

and you only have to write this code for write/read your class to/from Json (of course you will have User instead of Address:

implicit val addressWrites = Json.writes[Address]
implicit val addressReads = Json.reads[Address]

Now, they will be used automatically:

Example of write:

Ok(Json.toJson(entities.map(s => Json.toJson(s))))

Example of read(I put my example of doing POST for creating an entity by reading json from body) please notice addressReads used here

def create = Action(parse.json) { request =>
        request.body.validate(addressReads).map { entity =>
          Addresses.insert(entity)
          Ok(RestResponses.toJson(RestResponse(OK, "Succesfully created a new entity.")))
        }.recover { Result =>
          BadRequest(RestResponses.toJson(RestResponse(BAD_REQUEST, "Unable to transform JSON body to entity.")))
        }
}

In conclusion, they tried (and succeded) to make things very simple regarding JSON.

like image 117
Cristian Boariu Avatar answered Nov 12 '22 12:11

Cristian Boariu


If you are using play 2.0.x you can do

import com.codahale.jerkson.Json._

generate(milo)

generate uses reflection to do it.

In play 2.1 you can use Json.writes to create a macro for that implicit object you had to create. No runtime reflection needed!

import play.api.libs.json._
import play.api.libs.functional.syntax._

implicit val userWrites = Json.writes[User]
Json.toJson(milo)
like image 22
Ivan Meredith Avatar answered Nov 12 '22 10:11

Ivan Meredith