如何使用具有两个属性的弹簧缓存作为键

时间:2016-07-28 18:50:40

标签: java spring spring-cache

请参阅可用于缓存服务呼叫的Spring Cache

特别是以下xml片段:

<!-- the service we want to make cacheable -->
<bean id="bookService" class="x.y.service.DefaultBookService"/>

<!-- cache definitions -->
<cache:advice id="cacheAdvice" cache-manager="cacheManager">
    <cache:caching cache="books">
        <cache:cacheable method="findBook" key="#isbn"/>
        <cache:cache-evict method="loadBooks" all-entries="true"/>
    </cache:caching>
</cache:advice>

<!-- apply the cacheable behavior to all BookService interfaces -->
<aop:config>
    <aop:advisor advice-ref="cacheAdvice" pointcut="execution(* x.y.BookService.*(..))"/>
</aop:config>

如果密钥是单个属性,则上述机制有效。我需要根据isbn和author进行缓存。

有人可以建议如何使用两个属性启用缓存吗?

由于

1 个答案:

答案 0 :(得分:1)

您可以轻松使用key="#author.toString() + #isbn.toString()")或实现自己的keyGenerator并对其进行配置,或者您只需省略键属性,以便考虑所有参数。