如何在春季缓存对象列表?

时间:2018-08-17 03:10:04

标签: spring spring-boot spring-cache

我有一个名为getUserById的方法

@Cacheable(value = "Account", key = "#accountId")
public Account getUserById(Long accountId) {

和另一个名为getUserByIds的方法

@Cacheable(?????)
public List<Account> getUserByIds(List<Long> accountIds) {

如何按帐户ID缓存所有帐户?谢谢

0 个答案:

没有答案