caching - Tomcat 8 throwing - org.apache.catalina.webresources.Cache.getResource Unable to add the resource -
i have upgraded tomcat version 7.0.52 8.0.14.
i getting lots of static image files:
org.apache.catalina.webresources.cache.getresource unable add resource @ [/base/1325/wa6144-150x112.jpg] cache because there insufficient free space available after evicting expired cache entries - consider increasing maximum size of cache
i haven't specified particular resource settings, , didn't 7.0.52.
i have found mention of happening @ startup in bug report supposedly fixed. me happening not @ startup when resource requested.
anybody else having issue?
trying @ least disable cache, cannot find example of how specify not use cache. attributes have gone context in tomcat version 8. have tried adding resource cannot config right.
<resource name="file" cachingallowed="false" classname="org.apache.catalina.webresources.fileresourceset" />
thanks.
in $catalina_base/conf/context.xml
add block below before </context>
<resources cachingallowed="true" cachemaxsize="100000" />
for more information: http://tomcat.apache.org/tomcat-8.0-doc/config/resources.html
Comments
Post a Comment