개인적인 정리

The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit 본문

전자정부표준프레임워크/Exception 및 Error

The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit

yeon.Biju 2017. 3. 4. 20:05

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>

 

 

Comments