package jackson
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
sealed
class
PlayJsonModule extends SimpleModule
The Play JSON module for Jackson.
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:
import com.fasterxml.jackson.databind.ObjectMapper val jsonParseSettings = JsonParserSettings() val mapper = new ObjectMapper().registerModule(PlayJsonModule(jsonParseSettings)) val jsValue = mapper.readValue("""{"foo":"bar"}""", classOf[JsValue])
Deprecated Value Members
-
object
PlayJsonModule extends PlayJsonModule
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.11) Use PlayJsonModule class instead