개발 및 관리/HTML, CSS, Javascript, DOM

exceeding the 65535 bytes limit

HighLighter 2022. 7. 4. 14:36
반응형

1. Increasing the size limit of compiled JSP files to more than 65KB.

a JSP page compiles to a Java class, and there's a hard limit of 64k on the size of a Java class. If the JSP compiles down to a class larger than that limit, then you'll get an error.

2. https://bono915.tistory.com/entry/Tomcat-JSP-%EC%9A%A9%EB%9F%89-%EC%B4%88%EA%B3%BC-exceeding-the-65535-bytes-limit

[Tomcat] JSP 용량 초과 - is exceeding the 65535 bytes limit

하나의 큰 jsp 파일을 include를 통해서 여러개 파일로 나눠서 진행해야함.

반응형