Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Scala has a default library for JSON. http://www.scala-lang.org/api/current/index.html#scala.util.parsing.json.JSON$

Should I use this one, or another one such as lift1.0? how they compare those libraries with the base one?

I need to build a JSON string, something like this:

{
  { 'id': 1, 'name': 'John'},
  { 'id': 2, 'name': 'Dani'}
}

val jArray = JsArray();
jArray += (("id", "1"), ("name", "John"))
jArray += (("id", "2"), ("name", "Dani"))
println(jArray.dump)

I need to be able to add rows to the jArray, something like jArray += ...

What is the closest library/solution to this?

share|improve this question
possible duplicate of How can I construct and parse a JSON string in Scala / Lift – om-nom-nom Aug 9 '12 at 19:41

4 Answers

up vote 12 down vote accepted

Unfortunately writing a JSON library is the Scala community's version of coding a todo list app.

There are quite a variety of alternatives. I list them in no particular order, with notes:

  1. parsing.json.JSON - Warning nobody really uses this option in production code
  2. spray-json - Extracted from the Spray project
  3. Jerkson - Warning a nice library (built on top of Java Jackson) but now abandonware. If you are going to use this, probably follow the Scalding project's example and use the backchat.io fork
  4. sjson - By Debasish Ghosh
  5. lift-json - Can be used separately from the Lift project
  6. json4s - An extraction from lift-json, which is attempting to create a standard JSON AST which other JSON libraries can use. Includes a Jackson-backed implementation
  7. Argonaut - A FP-oriented JSON library for Scala

To make things more complicated, the Play Framework has also developed a Scala JSON library, but at the time of writing Typesafe have no plans for extracting it. An unofficial version is available.

share|improve this answer
1  
It's not true that lift-json is bundled within the larger LIft project, you can simply depend on lift-json and nothing else from the Lift project will come to your project. – fmpwizard Mar 29 at 6:33
1  
Thanks, updated – Alex Dean Mar 29 at 18:53

I suggest using jerkson, it supports most basic type conversions:

scala> import com.codahale.jerkson.Json._

scala> val l = List( 
                 Map( "id" -> 1, "name" -> "John" ),
                 Map( "id" -> 2, "name" -> "Dani")
               )

scala> generate( l )

res1: String = [{"id":1,"name":"John"},{"id":2,"name":"Dani"}]
share|improve this answer
1  
It also has some really awesome support for case classes that can make for some very elegant and type-safe JSON handling. – Thomas Lockney Nov 8 '11 at 18:53
This library has been abandoned by author, is there any alternative ? – zjffdu Dec 27 '12 at 9:02
zjffdu - please see my answer below – Alex Dean Jan 21 at 16:17

Lift-json is at version 2.4-M4 and it works really well (and is also very well supported, the maintainer is always ready to fix any bugs users may find. You can find examples using it on the github repository

The maintainer (Joni Freeman) is always reachable on the Lift mailing list. There are also other users on the mailing list who are very helpful as well.

share|improve this answer
2  
I use lift-json as well and can vouch that it's a great library. It makes both parsing and generating/serializing JSON very easy. – Dan Simon Nov 8 '11 at 19:31

Number 7 on the list is Jackson, not using Jerkson. It has support for Scala objects, (case classes etc).

Below is an example of how I use it.

object MyJacksonMapper extends JacksonMapper
val jsonString = MyJacksonMapper.serializeJson(myObject)
val myNewObject = MyJacksonMapper.deserializeJson[MyCaseClass](jsonString)

This makes it very simple. In addition is the XmlSerializer and support for JAXB Annotations is very handy.

This blog post describes it's use with JAXB Annotations and the Play Framework.

http://krasserm.blogspot.co.uk/2012/02/using-jaxb-for-xml-and-json-apis-in.html

Here is my current JacksonMapper.

trait JacksonMapper {

  def jsonSerializer = {
    val m = new ObjectMapper()
    m.registerModule(DefaultScalaModule)
    m
  }

  def xmlSerializer = {
    val m = new XmlMapper()
    m.registerModule(DefaultScalaModule)
    m
  }

  def deserializeJson[T: Manifest](value: String): T = jsonSerializer.readValue(value, typeReference[T])
  def serializeJson(value: Any) = jsonSerializer.writerWithDefaultPrettyPrinter().writeValueAsString(value)
  def deserializeXml[T: Manifest](value: String): T = xmlSerializer.readValue(value, typeReference[T])
  def serializeXml(value: Any) = xmlSerializer.writeValueAsString(value)

  private[this] def typeReference[T: Manifest] = new TypeReference[T] {
    override def getType = typeFromManifest(manifest[T])
  }

  private[this] def typeFromManifest(m: Manifest[_]): Type = {
     if (m.typeArguments.isEmpty) { m.erasure }
     else new ParameterizedType {
       def getRawType = m.erasure

       def getActualTypeArguments = m.typeArguments.map(typeFromManifest).toArray

       def getOwnerType = null
     }
  }
}   
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.