1

我正在尝试使用以下 jcache-ehcache 库作为包装器,以便我可以使用 Ecache 作为我的 JCache 实现。

这些是我的 Maven 依赖项:

    <dependency>
        <groupId>net.sf.ehcache</groupId>
        <artifactId>ehcache</artifactId>
        <version>2.1.0</version>
        <type>pom</type>
    </dependency>

    <dependency>
        <groupId>net.sf.ehcache</groupId>
        <artifactId>ehcache-jcache</artifactId>
        <version>1.4.0-beta1</version>
    </dependency>

在我的 Spring 配置文件中,我有以下 bean:

<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
    <property name="shared" value="true"/>
</bean>


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

<bean id="jcacheUserCache" class="net.sf.ehcache.jcache.JCache">
    <constructor-arg index="0" ref="userCache"/>
</bean>

我的 Ehcache.xml(在类路径根目录上)文件包含 userCache 区域定义:

  <cache name="userCache" maxElementsInMemory="10000"
  maxElementsOnDisk="0" eternal="false" overflowToDisk="false"
  diskSpoolBufferSizeMB="20" timeToIdleSeconds="0"
  timeToLiveSeconds="0" memoryStoreEvictionPolicy="LFU"
  statistics = "true">
  </cache>

在初始化时,我收到以下错误:

Exception in thread "main" org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'jcacheUserCache' defined in class path resource [application-context.xml]: Unsatisfied dependency expressed through constructor argument with index 1 of type [net.sf.ehcache.jcache.JCacheManager]: Ambiguous constructor argument types - did you specify the correct bean references as constructor arguments?

任何人都可以提供有关如何正确初始化此jCacheUserCachebean 的任何帮助吗?

谢谢

4

1 回答 1

0

的构造函数net.sf.ehcache.jcache.JCache有三个参数,但是您在创建jcacheUserCachebean 时只提供了第一个参数。您得到的错误是关于缺少第二个参数(类型net.sf.ehcache.jcache.JCacheManager)。

的构造函数JCache如下所示:

public JCache(Ehcache ehcache, JCacheManager cacheManager, ClassLoader classLoader) {
    // ...
}

因此,您还需要提供 aJCacheManager和 aClassLoader作为构造函数参数。

(见JCache.java这里

于 2012-06-13T21:55:48.530 回答