java - 在没有 XML 配置的情况下将 Ehcache CacheManager (v 3.x) 转换为 Spring CacheManager

标签 java spring ehcache spring-cache ehcache-3

我正在尝试在我的应用程序中使用 Ehcache 管理器。我想在没有 xml 配置的情况下设置它。 我有下一个依赖项:

<dependency>
    <groupId>org.ehcache</groupId>
    <artifactId>ehcache</artifactId>
    <version>3.6.0</version>
</dependency>
<dependency>
    <groupId>javax.cache</groupId>
    <artifactId>cache-api</artifactId>
    <version>1.0.0</version>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>5.1.1.RELEASE</version>
</dependency>

我有这样的 CacheManager bean:

@Bean
public org.springframework.cache.CacheManager cacheManager() {
    org.ehcache.CacheManager mainPageCache = CacheManagerBuilder
            .newCacheManagerBuilder()
            .withCache("mainPageCache", CacheConfigurationBuilder
                    .newCacheConfigurationBuilder(
                            Pageable.class,
                            Collection.class,
                            ResourcePoolsBuilder.heap(10))
                    .withExpiry(ExpiryPolicyBuilder
                            .timeToLiveExpiration(Duration
                                    .of(10, ChronoUnit.SECONDS))))
            .build(true);
    // ...
}

是否可以将Ehcache CacheManager转为Spring CacheManager? 我认为应该是这样的:return new JCacheCacheManager(/*some code*/);

最佳答案

您不能简单地将 ehcache CacheManager 转换为 spring CacheManager。

您可以使用 org.ehcache.jsr107.EhcacheCachingProvider 获取 javax.cache.CacheManager 并将其提供给 org.springframework.cache.jcache。 JCacheCacheManager 是用于 jcache(aka jsr107)的 org.springframework.cache.CacheManager 的实现。

import java.util.HashMap;
import java.util.Map;

import javax.cache.CacheManager;
import javax.cache.Caching;

import org.ehcache.config.CacheConfiguration;
import org.ehcache.config.ResourcePools;
import org.ehcache.config.builders.CacheConfigurationBuilder;
import org.ehcache.config.builders.ResourcePoolsBuilder;
import org.ehcache.config.units.EntryUnit;
import org.ehcache.config.units.MemoryUnit;
import org.ehcache.core.config.DefaultConfiguration;
import org.ehcache.jsr107.EhcacheCachingProvider;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.jcache.JCacheCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableCaching
public class CacheConfig {


    @Bean
    public JCacheCacheManager jCacheCacheManager() {
        JCacheCacheManager jCacheManager = new JCacheCacheManager(cacheManager());
        return jCacheManager;
    }

    @Bean(destroyMethod = "close")
    public CacheManager cacheManager() {

        ResourcePools resourcePools = ResourcePoolsBuilder.newResourcePoolsBuilder()
                .heap(2000, EntryUnit.ENTRIES)
                .offheap(100, MemoryUnit.MB)
                .build();


        CacheConfiguration<Object,Object> cacheConfiguration = CacheConfigurationBuilder.newCacheConfigurationBuilder(
                Object.class,
                Object.class,
                resourcePools).
                build();

        Map<String, CacheConfiguration<?, ?>> caches = new HashMap<>();
        caches.put("myCache", cacheConfiguration);

        EhcacheCachingProvider provider = (EhcacheCachingProvider) Caching.getCachingProvider("org.ehcache.jsr107.EhcacheCachingProvider");
        org.ehcache.config.Configuration configuration = new DefaultConfiguration(caches, provider.getDefaultClassLoader());

        return  provider.getCacheManager(provider.getDefaultURI(), (org.ehcache.config.Configuration) configuration);
    }

}

如果您使用的是 spring-boot,它应该会自动为您配置 JCacheCacheManager。然后,您可以使用 JCacheManagerCustomizer 来配置缓存。

关于java - 在没有 XML 配置的情况下将 Ehcache CacheManager (v 3.x) 转换为 Spring CacheManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53929804/

相关文章:

java - Android 位置的多个运行时权限

java - 有没有成熟的基于Cookie的HttpSession实现?

java - RESTful 服务 - 避免堆栈跟踪到客户端

spring - 如何在 Spring Boot 配置中显式传递数据库名称?

java - 如何为JUnit测试用例禁用EhCache

java - 如何在JAVA中找到我当前的时间在今天的时间和明天的日期之间

java - 使用 MySQL 的 SimpleJdbcInsert

Spring 4.2.4(不使用 spring boot)+ EhCache 3 + Hibernate 4.2.1

java - 如果我在项目中使用了反射堆,ehcache 是否比反射更快?

java - 使用 Netbeans 创建 WAR