当前位置:   article > 正文

JSP页面method _jspService问题解决_the code of method _jspservice

the code of method _jspservice

错误提示:
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
原因分析:
jsp页面包含很多业务代码导致文件过大,jboss编译超大文件报错!
问题解决:
方法一:分离页面业务逻辑出来,业务逻辑尽量不要写在jsp页面;
方法二:更改jobss中web.xml文件,路径为:jboss安装路径\jboss4\server\对应的service文件\deploy\jbossweb-tomcat55.sar\conf
修改内容:
找到

<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
  • 1
  • 2

在下面增加如下配置:

<init-param>
	<param-name>mappedfile</param-name>
	<param-value>false</param-value>
</init-param>
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/490477
推荐阅读
相关标签
  

闽ICP备14008679号