HttpServletResponse write is very slow when response size is large. It is taking 3 minutes to write the response when the response size is around 40 MB.
PrintWriter writer = response.getWriter();
response.setContentLength(xmlResponse.getBytes().length);
writer.write(xmlResponse);
Aucun commentaire:
Enregistrer un commentaire