If I have a method that returns an InputStream:
@GET
public InputStream getSomething()
{
InputStream stream = ...;
return stream;
}
Is that InputStream eventually closed by Jersey? If not, is there any
way I can explicitly close it after Jersey is done with it?
Thanks,
Zach