Reputation: 21
Actually it works perfectly in my local set up. However, it is throwing errors in production server.
Here is the details of the errors:
ERROR [InsertTag] ServletException in '/web/pages/exportAppInspectionDetails.jsp': Unable to compile class for JSP:
An error occurred at line: 89 in the generated java file
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
Stacktrace: org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 89 in the generated java file The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
Upvotes: 1
Views: 1539
Reputation: 162
Solution to this given at following link Make sure that you don't use spring-MVC like framework where object mapping is used. There must be some other way to manage that.
Upvotes: 3