天天看點

SpringBoot2.0 基礎案例(13):基于Cache注解模式,管理Redis緩存一、Cache緩存簡介二、核心API三、與SpringBoot2.0整合四、源代碼位址

一、Cache緩存簡介

從Spring3開始定義Cache和CacheManager接口來統一不同的緩存技術;

Cache接口為緩存的元件規範定義,包含緩存的各種操作集合;

Cache接口下Spring提供了各種緩存的實作;

如RedisCache,EhCacheCache ,ConcurrentMapCache等;

二、核心API

1、Cache緩存接口

定義緩存操作。實作有:RedisCache、EhCacheCache、ConcurrentMapCache等

2、CacheManager

緩存管理器,管理各種緩存(cache)元件

3、@Cacheable 主要針對方法配置,能夠根據方法的請求參數對其進行緩存

Cacheable 執行流程
1)方法運作之前,按照cacheNames指定的名字先去查詢Cache 緩存元件
2)第一次擷取緩存如果沒有Cache元件會自動建立
3)Cache中查找緩存的内容,使用一個key,預設就是方法的參數
4)key是按照某種政策生成的;預設是使用keyGenerator生成的,這裡使用自定義配置
5)沒有查到緩存就調用目标方法;
6)将目标方法傳回的結果,放進緩存中

Cacheable 注解屬性
cacheNames/value:指定方法傳回結果使用的緩存元件的名字,可以指定多個緩存
key:緩存資料使用的key
key/keyGenerator:key的生成器,可以自定義
cacheManager:指定緩存管理器
cacheResolver:指定緩存解析器
condition:指定符合條件的資料才緩存
unless:否定緩存;當unless指定的條件為true,方法的傳回值就不會被緩存
sync:是否使用異步模式           

4、@CacheEvict

清除緩存

CacheEvict:緩存清除
key:指定要清除的資料
allEntries = true:指定清除這個緩存中所有的資料
beforeInvocation = false:方法之前執行清除緩存,出現異常不執行
beforeInvocation = true:代表清除緩存操作是在方法運作之前執行,無論方法是否出現異常,緩存都清除           

5、@CachePut

保證方法被調用,又希望結果被緩存。

與@Cacheable差別在于是否每次都調用方法,常用于更新,寫入

CachePut:執行方法且緩存方法執行的結果
修改了資料庫的某個資料,同時更新緩存;
執行流程
 1)先調用目标方法
 2)然後将目标方法的結果緩存起來           

6、@EnableCaching

開啟基于注解的緩存

7、keyGenerator

緩存資料時key生成政策

8、@CacheConfig

統一配置本類的緩存注解的屬性

三、與SpringBoot2.0整合

1、核心依賴

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>           

2、Cache緩存配置

import org.springframework.cache.interceptor.KeyGenerator;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.lang.reflect.Method;
@Configuration
public class CacheConfig {
    /**
     * 自定義 Cache 的 key 生成器
     */
    @Bean("oneKeyGenerator")
    public KeyGenerator getKeyGenerator (){
        return new KeyGenerator() {
            @Override
            public Object generate(Object obj, Method method, Object... objects) {
                return "KeyGenerator:"+method.getName();
            }
        } ;
    }
}           

3、啟動類注解開啟Cache

@EnableCaching            // 開啟Cache 緩存注解
@SpringBootApplication
public class CacheApplication {
    public static void main(String[] args) {
        SpringApplication.run(CacheApplication.class,args) ;
    }
}           

4、Cache注解使用代碼

1)封裝增删改查接口

import com.boot.cache.entity.User;
public interface UserService {
    // 增、改、查、删
    User addUser (User user) ;
    User updateUser (Integer id) ;
    User selectUser (Integer id) ;
    void deleteUser (Integer id);
}           

2)Cache注解使用案例

import com.boot.cache.entity.User;
import com.boot.cache.service.UserService;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
@Service
public class UserServiceImpl implements UserService {
    // 使用自定義的key生成政策
    // 緩存結果key:addUser::KeyGenerator:addUser
    @CachePut(value = "addUser",keyGenerator="oneKeyGenerator")
    @Override
    public User addUser(User user) {
        return user ;
    }
    // 緩存結果key:updateUser::2
    @CachePut(value = "updateUser",key = "#result.id")
    @Override
    public User updateUser(Integer id) {
        User user = new User() ;
        user.setId(id);
        user.setName("smile");
        return user;
    }
    // 緩存結果key: selectUser::3
    @Cacheable(cacheNames = "selectUser",key = "#id")
    @Override
    public User selectUser(Integer id) {
        User user = new User() ;
        user.setId(id);
        user.setName("cicadaSmile");
        return user;
    }
    // 删除指定key: selectUser::3
    @CacheEvict(value = "selectUser",key = "#id",beforeInvocation = true)
    @Override
    public void deleteUser(Integer id) {

    }
}           

5、測試代碼塊

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = CacheApplication.class)
public class CacheTest {
    @Resource
    private UserService userService ;
    // 分别測試:增、改、查、删,四個方法
    @Test
    public void testAdd (){
        User user = new User() ;
        user.setId(1);
        user.setName("cicada");
        userService.addUser(user) ;
    }
    @Test
    public void testUpdate (){
        userService.updateUser(2) ;
    }
    @Test
    public void testSelect (){
        userService.selectUser(3) ;
    }
    @Test
    public void testDelete (){
        userService.deleteUser(3) ;
    }
}           

四、源代碼位址

GitHub位址:知了一笑
https://github.com/cicadasmile/spring-boot-base
碼雲位址:知了一笑
https://gitee.com/cicadasmile/spring-boot-base