您的位置:首页 > Web前端 > JavaScript

jsp: the code is exceeding the 65535 bytes limit

2017-04-19 10:46 555 查看
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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐