当前位置:首页 > JSP教程 >

jsp: the code is exceeding the 65535 bytes limit

发布时间:2017-05-09 12:59:45 作者:佚名 阅读:(864)

jsp: the code is exceeding the 65535 bytes limit
 
在web.xml中加入以下即可解决:
 
<servlet>
    <servlet-name>jsp</servlet-name>
    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
    
    <init-param>
        <param-name>mappedfile</param-name>
        <param-value>false</param-value>
    </init-param>
    
</servlet>

欢迎分享转载→ jsp: the code is exceeding the 65535 bytes limit

© 2015-2021 - 吾爱编程网 版权所有 苏ICP备18033726号-1关于我们 - 网站声明 - 联系我们