I have list of elements containing product name
val productList = List[String]
with values as product1,product2,product3
now I need to create a Json from the list as
{
"ProductName":["product1","product2","product3"]
}
how can I achieve this using scala json4s framework.
You should be able to render the list directly. Json4s can implicitly convert a list of strings into a
JArray
, which then becomes a json list.The readme for Json4s has some similar examples.