我正在使用带有Hibernate的EHCache来缓存我的数据库查询结果。
我正在使用谷歌注释(com.googlecode.ehcache.annotations.Cacheable
)来使DAO方法可缓存。
我的问题是,该方法中的一个参数是java.util.Map
,我不知道如何缓存它?
示例代码:
import com.googlecode.ehcache.annotations.Cacheable;
import com.googlecode.ehcache.annotations.KeyGenerator;
import com.googlecode.ehcache.annotations.PartialCacheKey;
import com.googlecode.ehcache.annotations.Property;
以下是示例方法
@Cacheable(cacheName = "ehcahe", keyGenerator = @KeyGenerator(name = "HashCodeCacheKeyGenerator", properties = @Property(name = "includeMethod", value = "false")))
public Object get( @PartialCacheKey Map map ) {
//do something
}
任何帮助?