在Spring框架中
将redis封装成 RedisTemplate 对象来实现对redis的操作,该对象支持所有原生
redis API。在该对象中定义了5种数据结构分别用于操作redis的5种类型的数据
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-data-redisartifactId>
dependency>
用于将数据库中查询的数据写入内存中
package pringbootmybatis.demo.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;
import pringbootmybatis.demo.entity.