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

解法:

修改tomcat下的web.xml,     搜索:JspServlet, 增加:

<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>

原文地址:https://www.cnblogs.com/sprinng/p/4242357.html