1. 程式人生 > >SpringBoot的快取

SpringBoot的快取

1、引入jar包

  

<!--快取-->
    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-cache</artifactId>
        </dependency>

 

2、程式碼應用

  類前加註解  @CacheConfig(cacheNames = {"comCodes","cardSubType"})  一個方法對應陣列中的一個元素,多個方法則對應多個元素

  方法前加註解  @Cacheable(cacheNames = {"comCode"})

3、伺服器中需要啟用Redis服務,網上下載Redis-x64-3.2.100.zip(我自己使用的是3.2.100版本)並解壓,點選redis-server.exe啟動快取即可(服務執行期間,切勿關閉redis-server服務視窗)