zl程序教程

您现在的位置是:首页 >  工具

当前栏目

Tomcat 警告:consider increasing the maximum size of the cache

Tomcat The of cache size 警告 maximum Increasing
2023-09-14 09:07:45 时间

最近在Tomcat8上导入原本Tomcat6的项目,报了以下错误:Tomcat 警告:consider increasing the maximum size of the cache。

这是因为tomcat8以上对resource采取了cache,而默认的大小是10M。

解决的办法很简单,就是在context.xml中调大缓存。

代码:<Resources cachingAllowed="true" cacheMaxSize="100000" />