如何在没有方法参数的方法上使用@cacheable注释的键

时间:2015-07-30 19:08:53

标签: java spring caching ehcache spring-cache

我有一个缓存方法,以及缓存驱逐方法我想使用缓存键属性来访问缓存,如何强制或锁定调用此方法的人使用相同的密钥。

我试过这样的事情但是,这似乎不对。方法参数(cachekey)可以作为调用者所需的任何值传递。

@Cacheable(value = "cacheNamex" , key ="#cachekey") 
    public   List  someCachableMethod(String cacheKey ) {
        List someList = someJdbctemplet.query(SOME_QUERY, someRowMapperObj);
        System.out.println(" data Returned from method");
        return someList;
    }
@CacheEvict((value = "cacheNamex" , key ="#cachekey") 
    public void someCacheEvictMethod(String cacheKey ){
           System.out.println("cache eviction called");
           System.out.println(" Expecting cache, cachex is cleared ");  }

2 个答案:

答案 0 :(得分:3)

如果您的方法没有任何参数,只需将相同的方法名称作为键并将其用于Evict:

@Cacheable(value = "cacheNamex" , key ="'someCachableMethod'")
 public   List  someCachableMethod() {
 }
 @CacheEvict((value = "cacheNamex" , key ="'someCachableMethod'") 
 public void someCacheEvictMethod(){
}

答案 1 :(得分:0)

如果您的方法没有参数,您可以使用没有键值的注释,如果您想了解有关此主题的更多信息,请参阅spring文档中的http://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html#cache-annotations-cacheable-default-key ..