1 SpringData Redis简介
Redis是一个基于内存的数据结构存储系统,它可以用作数据库或者缓存。它支持多种类型的数据结构,这些数据结构类型分别为String(字符串)、List(列表)、Set(集合)、Hash(散列)和 Zset(有序集合)。
SpringData Redis的作用是通过一段简单的配置即可访问redis服务,它的底层是对java提供的redis开发包(比如jedis等)进行了高度封装,主要提供了如下功能:
连接池自动管理,提供了一个高度封装的RedisTemplate类,基于这个类的对象可以对redis进行各种操作
针对jedis客户端中大量api进行了归类封装,将同一类型操作封装为operation接口
ValueOperations:简单字符串类型数据操作
SetOperations:set类型数据操作
ZSetOperations:zset类型数据操作
HashOperations:map类型的数据操作
ListOperations:list类型的数据操作
2 Redis环境搭建
2.1 安装redis的依赖环境
[root@localhost src]# yum -y install gcc automake autoconf libtool make
2.2 上传安装包
获取到安装包,并将它上传到linux的/usr/local/src/目录下
[root@localhost src]# ls redis-5.0.4.tar.gz
2.3 解压
解压安装包,得到一个redis-5.0.4目录
[root@localhost src]# tar -zxvf redis-5.0.4.tar.gz [root@localhost src]# ls redis-5.0.4 redis-5.0.4.tar.gz
2.4 编译
进入redis目录,在目录下执行make命令
[root@localhost src]# cd redis-5.0.4 [root@localhost redis-5.0.4]# make
2.5 安装
执行安装命令,注意此处指定了安装目录为/usr/local/redis
[root@localhost redis-5.0.4]# make PREFIX=/usr/local/redis install
2.6 复制配置文件
将配置文件复制到redis的安装目录的bin目录下
[root@localhost redis-5.0.4]# cd /usr/local/redis/bin/ [root@localhost bin]# ls redis-benchmark redis-check-aof redis-check-rdb redis-cli redis-sentinel redis-server [root@localhost bin]# cp /usr/local/src/redis-5.0.4/redis.conf ./ [root@localhost bin]# ls redis-benchmark redis-check-aof redis-check-rdb redis-cli redis.conf redis-sentinel redis-server
2.7 修改redis的配置文件
修改redis的配置文件,将注解绑定和保护模式关闭,方便我们从客户端连接测试
[root@localhost bin]# vim redis.conf
2.8 启动redis服务
[root@localhost bin]# ./src/redis-server redis.conf &
3 SpringData Redis入门案例
3.1 创建工程,引入坐标
<dependencies> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.3</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>2.1.8.RELEASE</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>5.1.6.RELEASE</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.8</version> </dependency> </dependencies>
3.2 创建配置文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- redis 相关配置 --> <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig"> <!--最大空闲数--> <property name="maxIdle" value="300"/> <!--连接时的最大等待毫秒数--> <property name="maxWaitMillis" value="3000"/> <!--在提取一个jedis实例时,是否提前进行验证操作;如果为true,则得到的jedis实例均是可用的--> <property name="testOnBorrow" value="false"/> </bean> <!--连接工厂--> <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" p:host-name="192.168.106.128" p:port="6379" p:pool-config-ref="poolConfig"/> <!--redisTemplate--> <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate"> <property name="connectionFactory" ref="jedisConnectionFactory"/> </bean> </beans>
3.3 创建测试类,完成一条简单数据的存取
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("classpath:applicationContext.xml") public class RedisTest { @Autowired private RedisTemplate redisTemplate; @Test public void test0() { //存入数据 redisTemplate.opsForValue().set("name", "oldlu"); //查询数据 String name = (String) redisTemplate.opsForValue().get("name"); System.out.println(name); } }
4 SpringData Redis的序列化器
通过Redis提供的客户端查看入门案例中存入redis的数据
这时候会发现,存入的数据并不是简单的字符串,而是一些类似于二进制的数据,这是怎么回事呢?
原来,SpringData Redis在保存数据的时候,底层有一个序列化器在工作,它会将要保存的数据(键和值)按照一定的规则进行序列化操作后再进行存储。spring-data-redis提供如下几种序列化器:
StringRedisSerializer: 简单的字符串序列化
GenericToStringSerializer: 可以将任何对象泛化为字符串并序列化
Jackson2JsonRedisSerializer: 序列化对象为json字符串
GenericJackson2JsonRedisSerializer:功能同上,但是更容易反序列化
OxmSerializer: 序列化对象为xml字符串
JdkSerializationRedisSerializer: 序列化对象为二进制数据
RedisTemplate默认使用的是JdkSerializationRedisSerializer对数据进行序列化。
那么如何选择自己想要的序列化器呢?SpringData提供了两种方式:
通过配置文件配置
<!--redisTemplate--> <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate"> <property name="connectionFactory" ref="jedisConnectionFactory"/> <!--指定非hash类型的数据序列化器--> <property name="keySerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/> </property> <property name="valueSerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/> </property> </bean>
通过RedisTemplate设定
@Test public void test1() { redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setValueSerializer(new StringRedisSerializer()); //存入数据 redisTemplate.opsForValue().set("name", "oldlu"); //查询数据 String name = (String) redisTemplate.opsForValue().get("name"); System.out.println(name); }
5 SpringData Redis运行原理分析
我们从入门案例中已经知道SpringData Redis操作Redis服务器只要是通过RestTemplate实现的,那么RestTemplate底层到底是如何操作redis的呢,下面我们通过源码追踪的形式看一看。
1、首先看配置文件中关于RestTemplate的bean的配置,可以看到在RedisTemplate的bean声明中注入了一个JedisConnectionFactory实例,顾名思义,这个连接工厂是用来获取Jedis连接的,那么通过这种方式RedisTemplate就可以拿到操作Redis服务器的句柄了。
2、使用debug运行入门案例,观察创建好的RestTemplate实例,可以看到里面主要有序列化器和redis的连接信息,基于这些,我们就可以对redis进行操作了
3、跟踪进入set方法,我们可以看到set方法中使用了一个connection来进行操作,这个connection的类型是JedisConnetion,而这个connection肯定是通过配置文件配置的JedisConnectionFactory产生的,也就是底层开始调用jedis的api了。