springboot2.0x全系列一springboot2.0x整合Redis
阿新 • • 發佈:2018-11-07
上一篇:地址:https://blog.csdn.net/qq_34077993/article/details/83417464
springboot整合redis非常的方便
首先在pom檔案中引進依賴:
<!-- Spring Boot Redis依賴開始 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <!--spring2.0整合redis所需common-pool2--> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> <version>2.4.2</version> </dependency> <!-- https://mvnrepository.com/artifact/redis.clients/jedis --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> <!-- Spring Boot Redis依賴結束 -->
每個依賴的作用可以自行百度
然後配置redis連線所需的一些必要資訊
我這裡使用的是
application-redis.yml檔案
來看下檔案內容
每個欄目的作用我都進行了標註
下面進行測試:
為什麼使用
StringRedisTemplate而不是用
RedisTemplate;
因為直接使用RedisTemplate會導致存入redis中的key完全不可讀
補充:
redis的nameSpace
以:作為風格,最後在redis中存入值的效果類似於group 分組
如圖
專案地址:https://download.csdn.net/download/qq_34077993/10750838