欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Tomcat:Warn consider increasing the maximum size of the cache

程序员文章站 2022-04-02 22:13:38
...

问题描述

Tomcat启动的时候,日志报了一堆警告信息,如下

 WARNING [localhost-startStop-1] org.apache.catalina.webresources.Cache.getResources Unable to add the 
resource at [/WEB-INF/classes/META-INF/services/javax.xml.parsers.DocumentBuilderFactory] to the cache 
because there was insufficient free space available after evicting expired cache entries - consider increasing
 the maximum size of the cache

解决方法

在tomcat的/conf/context.xml中的<Context>中添加

<Resources cachingAllowed="true" cacheMaxSize="100000" ---->这里单位是 KB/>
  • cachingAllowed:如果此标志的值是true,将用于静态资源的高速缓存。如果没有指定,该标志的默认值是true。这个值可以在Web应用程序运行时进行更改(例如,通过JMX)。当缓存在缓存禁用任何资源目前是从缓存中清除。
  • cacheMaxSize :以KB为单位的静态资源缓存的最大尺寸。如果未指定,则缺省值为10240 (10兆字节)。这个值可以在Web应用程序运行时进行更改(例如,通过JMX)。如果缓存正在使用的内存大于新的限制缓存将尝试规模随着时间的推移,以满足新的限制,以减少。如果需要的话,cacheObjectMaxSize将降低,以确保它是不大于 cacheMaxSize/20。