본문 바로가기

웹개발/오류

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

HTTP Status 500 - Unable to compile class for JSP: 오류


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


오류시


[Tomcat_Home]/conf/web.xml 파일에 JspServlet에 init-param을 추가해 준다.


이클립스의 경우 server등록한 파일에 web.xml이 있습니다.




<init-param>

     <param-name>mappedfile</param-name>

     <param-value>false</param-value>

</init-param> 


위의 코드를  아래에 추가



 <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> 


추가 후 tomcat 재기동 하여 해결 완료!