留言板

Error in jsp execution: exceeding the 65535 bytes limit

Sam Wan,修改在14 年前。

Error in jsp execution: exceeding the 65535 bytes limit

Liferay Master 帖子: 660 加入日期: 09-3-3 最近的帖子
Hi,

I dont' kown whether this is memory issue or my jsp file is too large to be delt with by the java compiler.
Here is the error I got when the jsp pages executed:


23:13:07,401 ERROR [IncludeTag:79] Current URL /web/guest generates exception: Unable to compile class for JSP: 

An error occurred at line: 417 in the generated java file
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit

Stacktrace:
23:13:07,471 ERROR [IncludeTag:165] org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: 417 in the generated java file
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit

Stacktrace:
        at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:92)
        at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
        at org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:423)
        at org.apache.jasper.compiler.Compiler.compile(Compiler.java:317)
        at org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
        at org.apache.jasper.compiler.Compiler.compile(Compiler.java:282)
        at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:586)
        at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:630)
        at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:535)
        at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:472)
        at com.liferay.taglib.util.IncludeTag.doEndTag(IncludeTag.java:67)
        at org.apache.jsp.html.common.themes.portlet_jsp._jspService(portlet_jsp.java:3516)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)



My server has only not enough 1GB memory. Is this the problem?

Thanks
Sam
Sam Wan,修改在14 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

Liferay Master 帖子: 660 加入日期: 09-3-3 最近的帖子
Had anyone solved the similar problem?
I would very appreciate for any suggestion and help.

Thanks
Sam
thumbnail
Tarun S. Kayasth,修改在14 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

Regular Member 帖子: 162 加入日期: 07-6-8 最近的帖子
Hi Sam,

I am facing same problem. Did you get any solution for it?

Thanks,

Tarun Kayasth
thumbnail
Amos Fong,修改在14 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

Liferay Legend 帖子: 2047 加入日期: 08-10-7 最近的帖子
Hi Guys,

This looks like a bug that was fixed here:

http://issues.liferay.com/browse/LPS-7003

The fix is to change the .jspf file to a .jsp file (and changing some variables).
thumbnail
Tarun S. Kayasth,修改在14 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

Regular Member 帖子: 162 加入日期: 07-6-8 最近的帖子
Thanks Amos, will try this...
thumbnail
Olaf Kock,修改在14 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

Liferay Legend 帖子: 6403 加入日期: 08-9-23 最近的帖子
Even without the fix - keep in mind, that a jsp is compiled into a java servlet class that outputs all the HTML code that you had in your jsp and also contains all the code that you wrote in the scriptlets on that jsp.

This servlet class will be compiled by javac to bytecode, loaded by the classloader and executed as if you wrote a servlet with loads of
pageContext.getOut().write("<div>some HTML stuff</div>");


There's a java limit for a single method to contain only 2^16 bytes. So if you hit this limit you almost always have too a very complicated jsp and can work around this by externalizing parts of it to proper java classes and just call them from the jsp, shrinking your jsp dramatically. I've seen this more with generated jsps than hand written ones, as writing (and maintaining) such a beast will be a lot of pain...

Now that you understand the root cause, you might be able to work around it without applying a patch. Note: I've not taken a deeper look at the linked (fixed) issue - might be that you need the patch nevertheless, but you'll figure that out...
thumbnail
Gnaniyar Zubair,修改在14 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

Liferay Master 帖子: 722 加入日期: 07-12-19 最近的帖子
Hi Tarun and Sam,


Hope content size of jsp file is exceeded. just split that jsp file and include one inside another.


- Gnaniyar Zubair
Qin Dou,修改在11 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

New Member 发布: 1 加入日期: 12-9-6 最近的帖子
can we use dynamic include to replace static includeemoticon
Bill Hillston,修改在11 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

New Member 帖子: 4 加入日期: 12-9-6 最近的帖子
>10000 Views now emoticon
thumbnail
Mayur Mulani,修改在6 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

New Member 帖子: 3 加入日期: 17-3-2 最近的帖子
Hi sam,

Hope you have got solution for this. If you still haven't got any answer for this then please find below solution. It works fine.
Go to Tomcat path then config folder where you will find web.xml file . Find Servlet name with jsp. add
<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
Because tomcat can not handle without this.
final jsp servlet tag:
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>fork</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>
Hope this solution will work for your crucial problem.

Thanks & regards,
Mayur Mulani
Palak NA,修改在5 年前。

RE: Error in jsp execution: exceeding the 65535 bytes limit

New Member 发布: 1 加入日期: 18-6-29 最近的帖子

I got it resolved  by adding a parameter  in web.xml in tomcat/conf/web.xml

<init-param> 
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>

 

And final attribute looks like

<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>fork</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value> 
</init-param>
<init-param> 
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>