基于spring的redisTemplate的缓存工具类
Posted ningjj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于spring的redisTemplate的缓存工具类相关的知识,希望对你有一定的参考价值。
pom.xml文件添加
<!-- config redis data and client jar -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.8.1.RELEASE</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
剩下的内容参考下方我的有道云笔记链接:
http://note.youdao.com/noteshare?id=fd3f0d7bd110088e73fb000d7c1cf091&sub=1573EB9218FB40CA8A44C7D4B206B8D4
以上是关于基于spring的redisTemplate的缓存工具类的主要内容,如果未能解决你的问题,请参考以下文章
Spring Data Redis入门示例:基于RedisTemplate
Spring boot集成Redis—RedisTemplate的使用来存储Map集合
springboot 中 RedisCacheManager rm = new RedisCacheManager(redisTemplate);我的项目没这个构造