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
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.