tomcat报错请求的代码超过了65535字节限制。

时间:2026-02-15 06:15:54

1、操作程序,从tomcat的日志文件里查到报错信息如下:

org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 158 in the generated java file

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

2、这是因为tocmat请求的url地址过长导致的,修改tomcat的web.xml文件后,程序恢复正常

3、在:

<init-param>

<param-name>enablePooling</param-name>

<param-value>false</param-value>

</init-param>

下添加

<init-param>

<param-name>mappedfile</param-name>

<param-value>false</param-value>

</init-param>

重启tomat即可恢复正常

© 2026 小度经验网
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com