Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would you design a REST based web service that receives an image file in the form of an InputStream? If the InputStream is posted to a REST end point, how does that end point receive it so that it can create an image file?

share|improve this question

2 Answers

up vote 9 down vote accepted

Receiving an InputStream is possible in JAX-RS. You just put the InputStream parameter without annotations:

@POST
public void uploadImage(InputStream stream) {
    // store image
}

Pay attention that it will work for any content type.

Although it will work, I would suggest a more "JAX-RS way":

1 Create provider that will create an image class (e.g. java.awt.Image) from the InputStream:

@Provider
@Consumes("image/jpeg")
class ImageProvider implements MessageBodyReader<Image> {

    public Image readFrom(Class<Image> type,
                                Type genericType,
                                Annotation[] annotations,
                                MediaType mediaType,
                                MultivaluedMap<String, String> httpHeaders,
                                InputStream entityStream) throws IOException,
        WebApplicationException {
       // create Image from stream
    }
}

2 Register the provider the same way you register a resource.
3 Make your resource class to receive Image instead of InputStream.

Why is this approach better?
You separate the deserialization logic from your resource class. So if in the future you would like to support more image formats, you just need to add additional providers, while the resource will stay the same.

share|improve this answer
Hi Tarlog, for your first method, how would you send the request to the endpoint? Would the InputStream be a form param? I'm using the google rest client to simulate a request and I don't understand how to test this... – c12 Apr 27 '11 at 4:18
@c12: Sorry, I'm not familiar with Google Rest Client. But it should not be a form param, but a request body. With Wink Client it would be something like: new RestClient().resource(url).post(body), while body is OutputStream. – Tarlog Apr 27 '11 at 5:38
thanks for the quick reply, I don't think the Rest Client supports it. I will try what you suggested with HTTPClient, maybe that will work.. – c12 Apr 27 '11 at 5:41
for the second solution, is it possible to augment it so it accepts form params as well? – c12 Apr 27 '11 at 5:49
sorry for all the questions, but how would you execute the second solution based off the url context? How would a post map to that provider? – c12 Apr 27 '11 at 6:02
show 4 more comments

I used the code in this post a while ago, and it worked fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.