EN
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
7
points
1. Problem description
During using my Tomcat 9 error occured:
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
2. Problem solution
JSP templates are too big and jsp:include should be used instead @include insde *.jsp files.
Replace:
<%@include file="sub_page.jsp" %>
To:
<jsp:include page="sub_page.jsp" />