개발자의 끄적끄적

[eclipse/jsp] method_jspService is exceeding the 65535 bytes limit 에러 해결 방법 본문

개발/java & jsp

[eclipse/jsp] method_jspService is exceeding the 65535 bytes limit 에러 해결 방법

효벨 2020. 10. 10. 01:00
728x90
반응형

[eclipse/jsp] method_jspService is exceeding the 65535 bytes limit 에러 해결 방법

 

 

The Code of method_jspService is exceeding the 65535 bytes limit

이클립스에서 jsp파일에 위와 같은 오류가 발생할 경우!

 

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

이 내용을 web.xml 에 추가 해주면 된다고 합니다.

 

JVM의 Method Size는 64K로 제한이 되어있다고 합니다.

위 오류는 64K를 넘어가서 에러가 나는 부분이라고 합니다.

 

참고들하세요!

 

출처 : funfunit.tistory.com/111?category=360700

 

 

반응형
Comments