| 12345678910111213141516171819202122232425262728293031 |
- package com.izouma.nineth.service;
- import org.springframework.cache.annotation.CacheEvict;
- import org.springframework.stereotype.Service;
- @Service
- public class CacheService {
- @CacheEvict(value = "collection", allEntries = true)
- public void clearCollection() {
- }
- @CacheEvict(value = "collection", key = "#id")
- public void clearCollection(Long id) {
- }
- @CacheEvict(value = "user", allEntries = true)
- public void clearUser() {
- }
- @CacheEvict(value = "user", key = "#username")
- public void clearUser(String username) {
- }
- @CacheEvict(value = "userInfo", key = "#id")
- public void clearUserInfo(Long id) {
- }
- @CacheEvict(value = "recommend", allEntries = true)
- public void clearRecommend() {
- }
- }
|