서버설정
org.apache.catalina.webresources.cache.getresource unable to add the resource at 오류
수유산장
2022. 9. 6. 12:36
톰캣 실행 시
org.apache.catalina.webresources.cache.getresource unable to add the resource at
오류는
톰캣에 캐시 메모리가 부족하기 때문에 발생한다.
특별한 설정을 하지 않으면 기본 10240(10MB) 가 디폴트값이다.
캐시를 늘려주는 설정을 하면 된다.
톰캣/conf/context.xml 에
<Resources cachingAllowed="true" cacheMaxSize="102400" />
를 추가해 주면 된다.