标签: 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缓存所有帐户?谢谢