삶 가운데 남긴 기록 AACII.TISTORY.COM
is exceeding the 65535 bytes limit 본문
증상
톰캣은 정상적으로 구동이 되었지만, 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
'DEV&OPS > Java' 카테고리의 다른 글
Spring MVC legacy project maven tomcat oracle mybatis 설정 (0) | 2022.02.15 |
---|---|
Log4j 보안 취약점 대응(Log4Shell) 2021년 11월 24일 (0) | 2021.12.22 |
Spring 3 Quartz 1.8.6 스케줄링 (0) | 2021.08.30 |
ClassNotFoundException 과 NoClassDefFoundError (0) | 2021.08.05 |
Maven 자바 표준 빌드 도구 (0) | 2020.05.13 |