gpt4 book ai didi

java - getEhcache() 的 Ehcache NullPointerException

转载 作者:行者123 更新时间:2023-12-01 15:29:46 27 4
gpt4 key购买 nike

我正在尝试缓存 DAO 的结果,如下 this JDBC Caching chapter 。不幸的是,我收到以下 NullPointerException

java.lang.NullPointerException
my.package.EhCacheWrapper.getCache(EhCacheWrapper.java:39)

第39行指的是第一次尝试访问Ehcache实例,由该行返回

return cacheManager.getEhcache(cacheName);

其中getEhcache(cacheName)返回nullcacheManager 的对象引用 ID 始终保持不变。我的项目使用Spring 3.0.5和Ehcache 2.3.0。

最佳答案

我丢弃了self-implemented EhcacheWrapper并使用了Spring提供的EhCacheFactoryBean

<bean id="inventoryCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean"> 
<property name="cacheManager" ref="cacheManager" />
<property name="cacheName" value="pets" />
</bean>

请注意,我必须让 Spring 3.0.5 正常工作。您可以使用Spring Cache Abstraction从 Spring 3.1.0 开始。

关于java - getEhcache() 的 Ehcache NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9686821/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com