Here is my case class that i want to convert to Json
case class Cart(cart_id :UUID, cart_entries :Map[String,CartEntry]){
}
I am using net.liftweb.json._
implicit val formats = UUID
val json = write(cart) //cart is Cart object with values for both attributes cart_id = 68eb787f-746c-4320-9ef4-8b5c7f0d7e21
println(json)
the json returns somthing like :
{"cart_id":{},"cart_entries":[{"_1":"ABC","_2":{"sku_id":"ABC","quantity":12,"price":{"bigDecimal":{},"mc":{}}}}]}
notice the value for cart_id is blank {} , I expect something like :
{"cart_id":{68eb787f-746c-4320-9ef4-8b5c7f0d7e21},"cart_entries":[{"_1":"ABC","_2":{"sku_id":"ABC","quantity":12,"price":{"bigDecimal":{},"mc":{}}}}]}
I have used other api's like fasterxml all return "" for UUID . How do i fix this ?
While your
Cart
is a case class composed of types for which lift-json provides serializers, theUUID
class probably isn't (I assume you usejava.util.UUID
). Therefore you need to write your own serializer & deserializer, with something like this (untested):