documentation/manual/working/javaGuide/main/http/JavaResponse.md
Content-TypeThe result content type is automatically inferred from the Java value you specify as response body.
For example:
Will automatically set the Content-Type header to text/plain, while:
will set the Content-Type header to application/json.
This is pretty useful, but sometimes you want to change it. Just use the as(newContentType) method on a result to create a new similar result with a different Content-Type header:
or even better, using:
You can also add (or update) any HTTP header to the result:
Note that setting an HTTP header will automatically discard the previous value if it was existing in the original result.
Cookies are just a special form of HTTP headers, but Play provides a set of helpers to make it easier.
You can easily add a Cookie to the HTTP response using:
If you need to set more details, including the path, domain, expiry, whether it's secure, and whether the HTTP only flag should be set, you can do this with the overloaded methods:
To discard a Cookie previously stored on the web browser:
If you set a path or domain when setting the cookie, make sure that you set the same path or domain when discarding the cookie, as the browser will only discard it if the name, path and domain match.
For a text based HTTP response it is very important to handle the charset correctly. Play handles that for you and uses utf-8 by default (see why to use utf-8).
The charset is used to both convert the text response to the corresponding bytes to send over the network socket, and to update the Content-Type header with the proper ;charset=xxx extension.
The encoding can be specified when you are generating the Result value:
Play supports part of RFC 7233 which defines how range requests and partial responses works. It enables you to deliver a 206 Partial Content if a satisfiable Range header is present in the request. It will also returns a Accept-Ranges: bytes for the delivered Result.
Note: Besides the fact that some parsing is done to better handle multiple ranges,
multipart/byterangesis not fully supported yet.
Range results can be generated for a Source, InputStream, File, and Path. See RangeResult API documentation for see all the methods available. For example:
Or for an Source:
When the request Range is not satisfiable, for example, if the range in the request's Range header field do not overlap the current extent of the selected resource, then a HTTP status 416 (Range Not Satisfiable) is returned.
It is also possible to pre-seek for a specific position of the Source to more efficiently deliver range results. To do that, you can provide a function where the pre-seek happens: