问题:
org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [xxx] to the cache for web application [/xxx] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
无法将位于[xxx]的资源添加到Web应用程序[/xxx]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓存的最大空间
解决方法:
在tomcat文件夹里的conf文件夹中content.xml文件,新增代码如下:
<Resources cachingAllowed="true" cacheMaxSize="10000000" />
注意:代码中cacheMaxSize的值是可修改的,不一定需要照搬。
cacheMaxSize的默认大小是1024,单位是KB。