0
在我的Java項目中,我將spring遷移到 - > 4.3.4,並將ehcache-spring-annotation遷移到http://www.springframework.org/schema/cache。Spring 4 @cacheable註解:如何爲自定義密鑰生成器添加屬性?
我有問題,我的定義緩存customkeygenerator的屬性:
@Cacheable(value = "cacheDAO", keyGenerator = @KeyGenerator(name = "CacheKeyGenerator",
properties = { @Property(name = "useReflection", value = "true"),
@Property(name = "checkforCycles", value = "true"),
@Property(name = "includeMethod", value = "false") })
似乎不可能由@keyGenerator註釋來定義useReflection,checkForCycles或includeMethod。
你能幫我配置嗎?春天4怎麼樣? 請告訴我,如果你不明白我的問題。
謝謝!