jsp: the code is exceeding the 65535 bytes limit

来源:互联网 发布:一建机电知乎 编辑:程序博客网 时间:2024/06/06 07:32
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>


0 0
原创粉丝点击