https://bz.apache.org/bugzilla/show_bug.cgi?id=60126
--- Comment #13 from Christopher Schultz <ch...@christopherschultz.net> --- (In reply to York Chen from comment #12) > Looks like this issue exists in all Tomcat 9. > Is there any way to fix it in tomcat9? The problem is that your JSP code is "too big". Try to break-up your JSP into smaller pieces, perhaps using includes of various types or moving some logic from JSP into Java code before your view-layer is invoked. Using JSP tag libraries makes this problem worse, due to the amount of code every invocation of such tags requires. We might be able to optimize the code very slightly under certain circumstances, but it will only be a matter of time before your code grows beyond the newly-optimized boundary. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org