I am creating a RESTful web service using Jersey. Some of the resources are binary files that I get from somewhere else on demand; such files are potentially big (hundreds of Mbytes).
I want browsers to GET those resources, so I have a @GET-annotated method returning a StreamingOutput, like in this answer.
I have two questions:
- Is StreamingOutput the proper way of returning files?
- What should I do in the server side to make it possible for browsers to resume an interrupted file transfer?