Fórum

Error in jsp execution: exceeding the 65535 bytes limit

Sam Wan, modificado 14 Anos atrás.

Error in jsp execution: exceeding the 65535 bytes limit

Liferay Master Postagens: 660 Data de Entrada: 03/03/09 Postagens Recentes
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, modificado 14 Anos atrás.

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

Liferay Master Postagens: 660 Data de Entrada: 03/03/09 Postagens Recentes
Had anyone solved the similar problem?
I would very appreciate for any suggestion and help.

Thanks
Sam
thumbnail
Tarun S. Kayasth, modificado 14 Anos atrás.

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

Regular Member Postagens: 162 Data de Entrada: 08/06/07 Postagens Recentes
Hi Sam,

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

Thanks,

Tarun Kayasth
thumbnail
Amos Fong, modificado 14 Anos atrás.

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

Liferay Legend Postagens: 2047 Data de Entrada: 07/10/08 Postagens Recentes
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, modificado 14 Anos atrás.

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

Regular Member Postagens: 162 Data de Entrada: 08/06/07 Postagens Recentes
Thanks Amos, will try this...
thumbnail
Olaf Kock, modificado 14 Anos atrás.

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

Liferay Legend Postagens: 6396 Data de Entrada: 23/09/08 Postagens Recentes
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, modificado 14 Anos atrás.

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

Liferay Master Postagens: 722 Data de Entrada: 19/12/07 Postagens Recentes
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, modificado 11 Anos atrás.

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

New Member Mensagem: 1 Data de Entrada: 06/09/12 Postagens Recentes
can we use dynamic include to replace static includeemoticon
Bill Hillston, modificado 11 Anos atrás.

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

New Member Postagens: 4 Data de Entrada: 06/09/12 Postagens Recentes
>10000 Views now emoticon
thumbnail
Mayur Mulani, modificado 6 Anos atrás.

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

New Member Postagens: 3 Data de Entrada: 02/03/17 Postagens Recentes
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, modificado 5 Anos atrás.

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

New Member Mensagem: 1 Data de Entrada: 29/06/18 Postagens Recentes

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>