Recent Posts
Recent Comments
Link
06-28 05:11
Today
Total
관리 메뉴

삶 가운데 남긴 기록 AACII.TISTORY.COM

is exceeding the 65535 bytes limit 본문

DEV&OPS/Java

is exceeding the 65535 bytes limit

ALEPH.GEM 2021. 8. 18. 17:03

증상

톰캣은 정상적으로 구동이 되었지만, catalina.out의 로그를 살펴보았을 때, 

... is exceeding the 65535 bytes limit 메시지와 함께 특정 jsp 화면이 에러가 나는 경우가 있습니다.

jsp 파일 사이즈가 초과된 경우에 발생합니다.

 

조치

tomcat 경로 안에 있는 web.xml을 열어서 <servlet> 태그 안쪽에 아래의 내용을 추가합니다.

<init-param>
	<param-name>mappedfile</param-name>
	<param-value>false</param-value>
</init-param>

web.xml 내용을 저장하고 tomcat을 재시작 합니다.

 

 

728x90