? @Caching注解可以讓我們在一個方法或者類上同時指定多個Spring Cache相關的注解。其擁有三個屬性:cacheable、和evict,分別用于指定@Cacheable、@CachePut和
```
@CacheEvict。
???@Caching(cacheable =?@Cacheable("users"), evict = {?@CacheEvict("cache2"),
?????????@CacheEvict(value =?"cache3", allEntries =?true) })
???public?User find(Integer id) {undefined
??????returnnull;
?? }
```