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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Receiving an InputStream is possible in JAX-RS. You just put the InputStream parameter without annotations:
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:
2 Register the provider the same way you register a resource. Why is this approach better? |
|||||||||||
|