-
1. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
jfclere Dec 21, 2012 3:00 AM (in response to amittelang1976)It is a compiler limit (the class is too big).
you should try to set
mapped-file="false" in the jsp configuration (See
http://docs.jboss.org/jbossweb/7.0.x/config/jsp.html). -
2. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
amittelang1976 Dec 21, 2012 4:44 PM (in response to jfclere)Hi Jean,
thanks for the reply but not sure where to set this configuration specially in which configuration. I am using JBoss EAP 6. Also to specify this JSP is working fine when its in Weblogic, its giving problem only in JBoss.
Thanks,
Amit
-
3. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
jfclere Jan 4, 2013 3:01 AM (in response to amittelang1976)the
mapped-file="false" in standalone.xml will change the generated java code that should help to make the resulting class smaller.
-
4. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
amittelang1976 Feb 8, 2013 3:58 PM (in response to jfclere)Hi Jean,
Thanks for the reply but I am not sure where in Stanalone.xml this tag will be used. I googled but not found any reference of this tab in XML. Do let me now if you know about under which tag it will come.
Thanks,
Amit -
5. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
amittelang1976 Feb 8, 2013 4:41 PM (in response to amittelang1976)HI,
I tried by using mapped-file="false" which was true in Jboss-as-web_1_0 AND _1_1.XSD files whereI found but even after making it false its giving me the same error. NO luck.
-
6. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
jfclere Feb 11, 2013 2:35 AM (in response to amittelang1976)Then you have to make the jsp smaller (like moving some java code in classes outsite the jsp). Would that be possible? Or is the jsp already small?
-
7. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
amittelang1976 Feb 12, 2013 11:24 AM (in response to jfclere)Size of Jsp is over 9000 line and its very hard to make jsp smaller as we used datacentric approach for jsp. So complete logic is in JSP itself.
thanks,
Amit
-
8. Re: Deplyoing application runtime giving JSP Compilation Error only on JBOSS EAP 6, _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
amittelang1976 Mar 26, 2013 3:45 PM (in response to amittelang1976)I resolved this issue by JSP:INCLUDE with param and using JSTL in existing jsp. Breaking down JSP resolved this issue.
Thanks,
Amit