This can be used if you want to use a custom Jackson ObjectMapper, or more advanced Jackson features when working
with JsValue. To use this:
import com.fasterxml.jackson.databind.ObjectMapper
val mapper = new ObjectMapper().registerModule(PlayJsonModule)
val jsValue = mapper.readValue("""{"foo":"bar"}""", classOf[JsValue])
The Play JSON module for Jackson.
This can be used if you want to use a custom Jackson ObjectMapper, or more advanced Jackson features when working with JsValue. To use this: