jsp
jsp 용량 초과
우주정복☆
2019. 6. 5. 17:08
오류 메세지
org.apache.jasper.JasperException: Unable to compile class for JSP:
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
해결 방법
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>
</servlet>