Languages
[Edit]
EN

The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit

7 points
Created by:
Zayaan-Rasmussen
533

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" />
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join