jsp文件无法编译成class文件

  • Post author:
  • Post category:其他


报错信息:

状况代码: 500

例外: org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: [210] in the generated java file: [D:\ptc\Windchill_11.0\Windchill\tomcat\instances\instance-8010\work\Catalina\localhost\Windchill\org\apache\jsp\netmarkets\jsp\auditing\auditCriteria_jsp.java] The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit Stacktrace:

jsp文件无法编译成class文件:

1.修改tomcat/conf/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>
        <init-param>
            <param-name>fork</param-name>
            <param-value>false</param-value>
        </init-param>
        <init-param>
            <param-name>development</param-name>
            <param-value>true</param-value>
        </init-param>
		<init-param>
            <param-name>xpoweredBy</param-name>
            <param-value>false</param-value>
        </init-param>

添加mappedfile和xpoweredBy这两个初始化参数

2.将jsp的静态引入方式改成动态引入方式

<%@ include file=”/help/help.jsp”%>

改为

<jsp:include flush=“true” page=”/help/help.jsp”/>

(jspf文件不支持动态引入,动态引入后之后把jspf文件内容显示,没有编译)

3. 查看本页面逻辑,看是否有过多字段(如fmt标签)删去无用代码



版权声明:本文为weixin_42302727原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。