개발자의 끄적끄적

[tomcat] 톰캣 is exceeding the 65535 bytes limit 에러 해결 방법 본문

개발/was & server

[tomcat] 톰캣 is exceeding the 65535 bytes limit 에러 해결 방법

효벨 2021. 2. 9. 02:00
728x90
반응형

[tomcat] 톰캣 is exceeding the 65535 bytes limit 에러 해결 방법

 

 

 

이클립스 프로젝트를 작업하던중

 

톰캣을 실행시켰을때

 

아래와 같은 에러나 나오는 경우가 있습니다!

is exceeding the 65535 bytes limit

 

그럴때는 

 

톰캣의 web.xml 파일을 열어서

 

아래 내용을 추가해주고

 

다시 시작하면 해결됩니다!

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

 

 

참고들하세요!

반응형
Comments