Byte limit Exceed problem when reloading a jsp page?

前端 未结 7 1883
日久生厌
日久生厌 2020-12-06 07:38

Im new to jsp.I\'m getting error is The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit

I am using s

7条回答
  •  无人及你
    2020-12-06 08:05

    We "fixed" this here by setting mappedfile to false for JspServlet in our Tomcat-Config. Go to %TOMCAT_HOME%/conf/web.xml and add the following init-param to the JspServlet:

        
            mappedfile
            false
        
    

    This does not solve the 64 KiB limit but helps in that way that it occurs much later because the generated code is shorter then.

提交回复
热议问题