documentation/manual/working/javaGuide/main/json/JavaJsonActions.md
In Java, Play uses the Jackson JSON library to convert objects to and from JSON. Play's actions work with the JsonNode type and the framework provides utility methods for conversion in the play.libs.Json API.
Jackson allows you to easily convert Java objects to JSON by looking at field names, getters and setters. As an example we'll use the following simple Java object:
We can parse the JSON representation of the object and create a new Person:
Similarly, we can write the Person object to a JsonNode:
A JSON request is an HTTP request using a valid JSON payload as request body. Its Content-Type header must specify the text/json or application/json MIME type.
By default an action uses an any content body parser, which you can use to retrieve the body as JSON (actually as a Jackson JsonNode):
Of course it’s way better (and simpler) to specify our own BodyParser to ask Play to parse the content body directly as JSON:
Note: This way, a 400 HTTP response will be automatically returned for non JSON requests with Content-type set to application/json.
You can test it with curl from a command line:
curl
--header "Content-type: application/json"
--request POST
--data '{"name": "Guillaume"}'
http://localhost:9000/sayHello
It replies with:
HTTP/1.1 200 OK
Content-Type: text/plain; charset=utf-8
Content-Length: 15
Hello Guillaume
In our previous example we handled a JSON request, but replied with a text/plain response. Let’s change that to send back a valid JSON HTTP response:
Now it replies with:
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{"exampleField1":"foobar","exampleField2":"Hello world!"}
You can also return a Java object and have it automatically serialized to JSON by the Jackson library:
If you already have a JSON String that you'd like to return, you can do that as well:
There are two possible ways to customize the ObjectMapper for your application.
application.confBecause Play uses Pekko Jackson serialization support, you can configure the ObjectMapper based on your application needs. The documentation for jackson-databind Features explains how you can further customize JSON conversion process, including Mapper, Serialization and Deserialization features.
If you would like to use Play's Json APIs (toJson/fromJson) with a customized ObjectMapper, you need to add the custom configurations in your application.conf. For example, if you want to add a new module for Joda types
pekko.serialization.jackson.play.jackson-modules += "com.fasterxml.jackson.datatype.joda.JodaModule"
Or to add set a serialization configuration:
pekko.serialization.jackson.play.serialization-features.WRITE_NUMBERS_AS_STRINGS=true
ObjectMapperIf you still want to take completely over the ObjectMapper creation, this is possible by overriding its binding configuration. You first need to disable the default ObjectMapper module in your application.conf
play.modules.disabled += "play.core.ObjectMapperModule"
Then you can create a provider for your ObjectMapper:
And bind it via Guice as an eager singleton so that the ObjectMapper will be set into the Json helper:
Afterwards enable the Module:
play.modules.enabled += "path.to.JavaJsonCustomObjectMapperModule"