从使用 @Cacheable 注释的方法中清除缓存
Clearing cache from a method annotated with @Cacheable
我有一个用@Cacheable 注释的方法。如果在方法内部捕获到异常,我希望清除缓存。但是,似乎缓存加载在清除它的行之后执行的方面。因此,当方法中捕获到Exception时,即使清除了缓存,空字符串结果仍然留在缓存中。
我应该从哪里清除缓存?
@Cacheable("myCache")
public String myMethod() {
String result="";
try {
result = doSomething();
} catch (Exception e) {
cacheManager.getCache("myCache").clear();
}
return token;
}
好的 - 注释上有一个您可以使用的属性。以下例子来自(http://websystique.com/spring/spring-4-cacheable-cacheput-cacheevict-caching-cacheconfig-enablecaching-tutorial/)
unless : Conditional Caching, applies to return value of method. Item
will be cached, unless the condition mentioned in ‘unless’ met. Note
that condition applies to return value of method.#result refers to
method return value.
@Cacheable(value="products", key="#product.name", condition="#product.price<500", unless="#result.outofstock")
public Product findProduct(Product product){
..
return aproduct;
}
因此您可以在错误情况下或任何其他您不希望缓存结果的时间使用 unless="#result.length() == 0"
和 return 空字符串。
我有一个用@Cacheable 注释的方法。如果在方法内部捕获到异常,我希望清除缓存。但是,似乎缓存加载在清除它的行之后执行的方面。因此,当方法中捕获到Exception时,即使清除了缓存,空字符串结果仍然留在缓存中。
我应该从哪里清除缓存?
@Cacheable("myCache")
public String myMethod() {
String result="";
try {
result = doSomething();
} catch (Exception e) {
cacheManager.getCache("myCache").clear();
}
return token;
}
好的 - 注释上有一个您可以使用的属性。以下例子来自(http://websystique.com/spring/spring-4-cacheable-cacheput-cacheevict-caching-cacheconfig-enablecaching-tutorial/)
unless : Conditional Caching, applies to return value of method. Item will be cached, unless the condition mentioned in ‘unless’ met. Note that condition applies to return value of method.#result refers to method return value.
@Cacheable(value="products", key="#product.name", condition="#product.price<500", unless="#result.outofstock")
public Product findProduct(Product product){
..
return aproduct;
}
因此您可以在错误情况下或任何其他您不希望缓存结果的时间使用 unless="#result.length() == 0"
和 return 空字符串。