19

我遇到以下问题。

我的项目中有一套测试服,每个单独的测试都运行良好。

但是,当我将它们作为套件运行时,其中一些会失败,但出现以下异常:

Caused by: java.lang.IllegalStateException: The dao Cache is not alive (STATUS_SHUTDOWN)
    at net.sf.ehcache.Cache$CacheStatus.checkAlive(Cache.java:4269)
    at net.sf.ehcache.Cache.checkStatus(Cache.java:2703)
    at net.sf.ehcache.Cache.get(Cache.java:1576)
    at org.springframework.cache.ehcache.EhCacheCache.get(EhCacheCache.java:61)
    at org.springframework.cache.interceptor.CacheAspectSupport.inspectCacheables(CacheAspectSupport.java:310)
    at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:198)
    at org.springframework.cache.interceptor.CacheInterceptor.invoke(CacheInterceptor.java:66)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:90)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)

有没有办法避免这种行为,即在多个测试中保持缓存活动或正确关闭它?

4

5 回答 5

6

尝试在测试上下文中EhCacheManagerFactoryBeanEhCacheCacheManager在测试上下文中将共享属性设置为 false。

于 2013-05-04T03:37:23.200 回答
2

Make a seperate cache config for tests only! and put scope "prototype"

@Configuration
@EnableCaching
public class EhCacheConfig {

 @Bean(name = "cacheManager")
 @Scope("prototype")
 public CacheManager getCacheManager() {
    return new EhCacheCacheManager(getEhCacheFactory().getObject());
 }

 @Bean
 @Scope("prototype")
 public EhCacheManagerFactoryBean getEhCacheFactory() {
    EhCacheManagerFactoryBean factoryBean = new EhCacheManagerFactoryBean();
    factoryBean.setConfigLocation(new ClassPathResource("ehcache.xml"));
    factoryBean.setShared(true);
    return factoryBean;
 }
}
于 2017-07-11T09:06:36.050 回答
0

JUnit 共享 Spring 上下文以提高速度。在我的一个测试中明确删除 Spring 上下文关闭时,我避免了这个异常。请参阅跨 junit 测试类重用 spring 应用程序上下文

于 2015-04-12T20:36:26.860 回答
0

这个问题基本上会发生,每当您在多个应用程序之间共享缓存时。所以尽量不要通过将 shared 属性设置为 false 来共享您的缓存。

<spring:bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <spring:property name="configLocation" value="classpath:ehcache.xml" /> <spring:property name="shared" value="false" /> </spring:bean>

但是在执行时你会遇到

同一个虚拟机中已经存在另一个同名 'cacheManager' 的 CacheManager。非法状态异常

为了解决这个问题,我们需要提到

<spring:property name="cacheManagerName" value="abc" />

我希望最终问题将得到解决。

于 2015-11-24T04:24:08.603 回答
0

用 .注释你失败的测试类@AutoConfigureCache。默认情况下,此注解将安装一个NoOpCacheManager,即一个基本的、CacheManager适合禁用缓存的无操作实现,通常用于在没有实际后备存储的情况下支持缓存声明。它只会将任何项目接受到缓存中,而不是实际存储它们。

@AutoConfigureCache 上的 Spring 文档

@NoOpCacheManager 上的 Spring 文档

于 2021-01-15T07:51:28.497 回答