톰캣 10.0 공식문서에 의하면 캐시의 최대 크기는 10mb라고 합니다.(8.0, 9.0도 동일)
The maximum size of the static resource cache in kilobytes. If not specified, the default value is 10240 (10 megabytes). This value may be changed while the web application is running (e.g. via JMX). If the cache is using more memory than the new limit the cache will attempt to reduce in size over time to meet the new limit. If necessary, cacheObjectMaxSize will be reduced to ensure that it is no larger than cacheMaxSize/20.
최대 크기인 10mb로 늘려주기 위해 톰캣/conf/context.xml
파일에 아래의 코드를 추가해줍니다.
<Resources cachingAllowed="true" cacheMaxSize="100000"/>
반응형
'Spring' 카테고리의 다른 글
Gradle 빌드시 Deprecated Gradle features were used in this build 오류 (0) | 2022.11.18 |
---|---|
[Hibernate] ScriptAssert사용시 HV000232: No JSR 223 script engine found for language "javascript" (0) | 2022.01.06 |
[JPA] 기본 키(PK) 매핑 방법과 생성 전략 (0) | 2020.08.18 |
[JPA] Entity EntityManager EntityManagerFactory PersistenceContext (0) | 2020.08.05 |
[JPA] QueryDSL Q class 생성 안될때 (0) | 2020.08.03 |