1

アプリケーションデータをキャッシュするためにehcache-spring-annotationsを使用しています。このために、私は以下の構成を持っています:

<bean id="ehCacheManager"
      class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" > 
      <property name="configLocation" value="classpath:ehcache.xml"/>
     </bean>      
    <ehcache:annotation-driven cache-manager="ehCacheManager" />  

構成された Bean ' ehCacheManager ' から ' net.sf.ehcache.CacheManager 'の参照を取得したいと考えています。そのため、'CacheManager' を使用して、手動で手動でキャッシュ内で直接 put または remove 操作を実行できます。

「 org.springframework.cache.ehcache.EhCacheManagerFactoryBean 」から「 net.sf.ehcache.CacheManager」の参照を取得する方法はありますか?

4

1 に答える 1