Чи може хтось опублікувати приклад того, як в Джерсі встановлювати об’єкт StreamingOutput
як Response
об’єкт?
Я не зміг знайти приклад цього.
Відповіді:
Подивіться, чи це допомагає:
@GET
@Produces(MediaType.TEXT_PLAIN)
public Response streamExample() {
StreamingOutput stream = new StreamingOutput() {
@Override
public void write(OutputStream os) throws IOException,
WebApplicationException {
Writer writer = new BufferedWriter(new OutputStreamWriter(os));
writer.write("test");
writer.flush(); // <-- This is very important. Do not forget.
}
};
return Response.ok(stream).build();
}
MessageBodyWriter
але це питання стосувалось потокової передачі з Response
об’єктом. Коли MessageBodyWriter
ви зобов'язані писати на OutputStream
.