ehcache报错ERROR n.s.e.store.disk.DiskStorageFactory - Disk Write的解决办法

Posted koal的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ehcache报错ERROR n.s.e.store.disk.DiskStorageFactory - Disk Write的解决办法相关的知识,希望对你有一定的参考价值。

23:53:44 ERROR n.s.e.store.disk.DiskStorageFactory - Disk Write of com.koal.**.**.**.**.**.***Impl$$EnhancerBySpringCGLIB$$5b782dcf.query****.2063333947 failed: 
java.io.NotSerializableException: com.koal.**.**.entity.**.helloDO

  看图很明显,其中问题就是helloDO没有序列化。因为ehcache开启了缓存存储到物理影片上,所以需要序列化对象,否则就报错。

    <cache name="**-**-MethodsCache"
           maxElementsInMemory="10000"
           eternal="false"
           timeToIdleSeconds="1800"
           timeToLiveSeconds="3600"
           memoryStoreEvictionPolicy="LFU"
           overflowToDisk="true"
           maxElementsOnDisk="10000000"
           diskPersistent="false"
           diskExpiryThreadIntervalSeconds="120"
    />

  

以上是关于ehcache报错ERROR n.s.e.store.disk.DiskStorageFactory - Disk Write的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

hibernate3与ehcache-2.8.3配合使用,在多个SessionFactory实例的情况下出现“Another unnamed CacheManager already ex

解决Github中使用Octotree时,出现 Error: API limit exceeded 报错 或者 Error: Connection error报错的问题(详细操作)

Ehcache 2升级到Ehcache 3的改动点

Ehcache 2升级到Ehcache 3的改动点

error_reporting 报错

Redis集群报错:(error) MOVED 解决方法