美文网首页
tomcat报错

tomcat报错

作者: dubingxin | 来源:发表于2021-06-17 10:41 被阅读0次

    1、consider increasing the maximum size of the cache

    org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/20210113/81d5a663eca4493b8e79bccceb69687e.jpg] to the cache for web application [/attachment] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
    

    只要在$CATALINA_BASE/conf/context.xml里增加资源最大可缓存的大小就行了,大小可按自己的需要定义

    <Resources
        cachingAllowed="true"
        cacheMaxSize="100000"
    />
    

    2、post请求参数过长时报400错误

    [文章]https://blog.csdn.net/fst438060684/article/details/82453969

    3、java.io.InvalidClassException:local class incompatible

    是序列化和反序列化的serialVersionUID没有对应上。而serialVersionUID参数主要是用来验证Java序列化版本一致性。造成上述报错信息的原因是这类里面没有显示指定serialVersionUID值。

    相关文章

      网友评论

          本文标题:tomcat报错

          本文链接:https://www.haomeiwen.com/subject/axzqyltx.html