Net :: ERR_INCOMPLETE_CHUNKED_ENCODING SPRING MVC Application Using JSP

I developed a web application using SPRING MVC and JSP, now these applications work fine, but when deploying to the server I get this error. And nothing loads.

This happens with the whole page except the login page. Only the login page is displayed successfully. I tracked tomcat logs, but there were no exceptions.

Googled all day, but still not able to figure out the reason for this, please suggest me if you know about it.

chorome network info, show status faul

+4
source share
1 answer

Tomcat , , , , , , .

, , , , JSP, .

<% out.println("<p>bufferSize: " + out.getBufferSize() + " remaining: " + out.getRemaining() + " used: " + (out.getBufferSize() - out.getRemaining()) + " autoFlush: " + out.isAutoFlush() + "</p><br>"); %>

- :

bufferSize: 8192 remaining: 1509 used: 6683 autoFlush: true

, , , , JSP:

<%@ page buffer="none" %>

, 8MB (vs 8KB) , , :

<%@ page buffer="8192kb" %>

, bufferSize , , :

bufferSize: 8380416 remaining: 8321883 used:58533 autoFlush: true

, :

<%@ page buffer="64kb" %>

, , JSP.

. , , .

+2

Source: https://habr.com/ru/post/1598604/


All Articles