Tomcat-because there was insufficient free space available after evicting expired cache entries解决方案

今天启动Tomcat的时候出现如下信息:

异常信息:

19-Mar-2020 16:48:06.947 WARNING [localhost-startStop-1] org.apache.catalina.webresources.Cache.getResource 
Unable to add the resource at [/WEB-INF/classes/templates/error/500.ftl] to the cache for web application [/henry] 
`because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache`
19-Mar-2020 16:48:06.947 WARNING [localhost-startStop-1] org.apache.catalina.webresources.Cache.getResource 
Unable to add the resource at [/WEB-INF/classes/templates/quebank/add-que-new.ftl] to the cache for web application [/henry] 
`because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache`

以上出现了Tomcat静态空间不足的情况,可以到Tomcat中conf文件夹下的context.xml文件做如下修改:

解决方案

<Context>  
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
    <Resources
        cachingAllowed="true"  
        cacheMaxSize="100000"
    />
</Context>

参数:

1、cachingAllowed:设置是否允许静态资源缓存,默认为true;

2、cacheMaxSize:设置静态资源缓存的最大值,默认值为10240 ,单位是KB

除了上面的解决方案,还可以通过以下方案来解决:直接关闭缓存,设置 cachingAllowed为false。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值