我正在尝试覆盖整个类的KeyGenerator,但是不知道是否有简单的方法可以做到这一点。

我有以下配置Bean设置来启用我的缓存:

@Configuration
@EnableCaching(mode=AdviceMode.ASPECTJ)
public class CacheConfig extends CachingConfigurerSupport{
    @Bean(destroyMethod="shutdown")
    public net.sf.ehcache.CacheManager ehCacheManager() {
        CacheConfiguration configCache = new CacheConfiguration();
        veracodeCache.setName("repo");
        net.sf.ehcache.config.Configuration config = new net.sf.ehcache.config.Configuration();
        config.addCache(configCache);
        return net.sf.ehcache.CacheManager.newInstance(config);
    }

    @Bean
    @Override
    public CacheManager cacheManager() {
        return new EhCacheCacheManager(ehCacheManager());
    }

    @Bean
    @Override
    public KeyGenerator keyGenerator() {
        return new SimpleKeyGenerator();
    }
}


但是,在特定的类中,我想使用其他密钥生成器。我知道我可以在每个@Cacheable调用中覆盖单个keyGenerator,但是无法找到一种方法来覆盖整个类。

例如:

@KeyGenerator("com.domain.MyCustomKeyGenerator")  // <--- anyway to set a different key gen for the entire class?
public class Repo{

   @Cacheable("repo")
   public String getName(int id){
       return "" + id;
   }
}


根据文档,如果我在类型上设置@Cacheable,则所有方法都将被缓存(这不是我想要的)。

当然,我的另一个选择是在每个方法上都指定@Cacheable(value="repo", keyGenerator="com.domain.MyCustomKeyGenerator"),但这非常多余,尤其是当我想更改多个类的默认键生成器时。

有什么支持吗?

最佳答案

您可以在课程级别使用@CacheConfig。它不会启用方法的缓存,而只是对其进行配置。

@CacheConfig(keyGenerator="com.domain.MyCustomKeyGenerator")
public class Repo{

   // your com.domain.MyCustomKeyGenerator will be used here
   @Cacheable("repo")
   public String getName(int id){
       return "" + id;
   }
}

10-05 19:22