我使用Spring
使用内置缓存使用@Cacheable
和@CachePut
注释。
我的@Service中有两个方法,一个用于保存数据库中的值,另一个用于从数据库中获取值。他们都使用缓存。
@CachePut(key = "#code")
MyObject saveMyObject(MyObject o, String code) {
return dao.save(o);
}
@Cacheable(key = "#code")
MyObject getMyObject(String code) {
return dao.getMyObject(code);
}
在保存对象时,我想把它放在另一个缓存中,例如。
@CachePut(key = "'TMP_'.concat(#code)")
但我无法在@CachePut
方法上使用两个saveMyObject
注释。
我该怎么办?
答案 0 :(得分:5)
您可以使用org.springframework.cache.annotation.Caching注释对CachePut进行分组:
@Caching( put = {
@CachePut(key = "#code"),
@CachePut(key = "'TMP_'.concat(#code)")
})
MyObject saveMyObject(MyObject o, String code) {
return dao.save(o);
}