spring boot data(数据) redis 中提供了redistemplate和stringredistemplate,其中stringredistemplate是redistemplate的子类,两个方法基本一致,不同之处主要体现在操作的数据类型不同,redistemplate中的两个泛型都是object,意味着存储的key和value都可以是一个对象,而stringredistemplate的两个泛型都是string,意味着stringredistemplate的key和value都只能是字符串。
注意: 使用redistemplate默认是将对象序列化到redis中,所以放入的对象必须实现对象序列化接口。
1、搭建环境
搭建环境: 采用idea jdk8 springboot2.3.5集成redis。
第一步: 使用idea构建项目,同时引入对应依赖
依赖选择
引入依赖
maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
xsi:schemalocation="http://maven.apache.org/pom/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.3.4.release
com.imooc
springboot-redis-demo
0.0.1-snapshot
springboot-redis-demo
demo redis project for spring boot
1.8
org.springframework.boot
spring-boot-starter-data-redis
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.junit.vintage
junit-vintage-engine
org.springframework.boot
spring-boot-maven-plugin
第二步:配置redis
application.yml 配置文件如下:
# 主机
spring.redis.host=127.0.0.1
# 端口
spring.redis.port=6379
# 密码
spring.redis.password=root
# 数据库,默认第0个
spring.redis.database=0
# 最大连接数量 = maxtotal
spring.redis.jedis.pool.max-active=8
# 资源池允许最大空闲数
spring.redis.jedis.pool.max-idle=8
# 资源池确保最少空闲连接数
spring.redis.jedis.pool.min-idle=2
# 连接超时时间
spring.redis.jedis.pool.max-wait=1000
第三步:添加redis序列化方法
redis要序列化对象是使对象可以跨平台存储和进行网络传输。因为存储和网络传输都需要把一个对象状态保存成一种跨平台识别的字节格式,然后其他的平台才可以通过字节信息解析还原对象信息,所以进行“跨平台存储”和”网络传输”的数据都需要进行序列化。
/**
* redistemplate 序列化使用的jdkserializeable, 存储二进制字节码, 所以自定义序列化类
* @param redisconnectionfactory
* @return
*/
@bean
public redistemplate
2、测试redis
在测试的package中,写下测试方法如下:
applicationtests.java
package com.xiao.springdatademo;
import org.junit.jupiter.api.test;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.boot.test.context.springboottest;
import org.springframework.data.redis.core.redistemplate;
@springboottest
class applicationtests {
@autowired
private redistemplate redistemplate;
@test
void testinit() {
//ping pong 心跳机制检测是否连接成功
string pong = redistemplate.getconnectionfactory().getconnection().ping();
system.out.println("pong = " pong);
}
@test
public void teststring(){
// 插入一条数据
redistemplate.opsforvalue().set("username","lisi");
// 获取一条数据
object username = redistemplate.opsforvalue().get("username");
system.out.println("username = " username);
}
}
测试成功!
3、stringredistemplate
3.1、介绍
-
stringredistemplate继承redistemplate。
-
stringredistemplate使用的序列化类是stringredisserializer。
-
sdr默认采用的序列化策略有两种,一种是string的序列化策略,一种是jdk的序列化策略。stringredistemplate默认采用的是string的序列化策略,保存的key和value都是采用此策略序列化保存的。
-
stringredistemplate对字符串支持比较友好,不能存储对象,当你的redis数据库里面本来存的是字符串数据或者你要存取的数据就是字符串类型数据的时候,那么你就使用stringredistemplate即可。
3.2、stringredistemplate常用操作
stringredistemplate.opsforvalue().set("test", "100",60*10,timeunit.seconds);//向redis里存入数据和设置缓存时间
stringredistemplate.boundvalueops("test").increment(-1);//val做-1操作
stringredistemplate.opsforvalue().get("test")//根据key获取缓存中的val
stringredistemplate.boundvalueops("test").increment(1);//val 1
stringredistemplate.getexpire("test")//根据key获取过期时间
stringredistemplate.getexpire("test",timeunit.seconds)//根据key获取过期时间并换算成指定单位
stringredistemplate.delete("test");//根据key删除缓存
stringredistemplate.haskey("546545");//检查key是否存在,返回boolean值
stringredistemplate.opsforset().add("red_123", "1","2","3");//向指定key中存放set集合
stringredistemplate.expire("red_123",1000 , timeunit.milliseconds);//设置过期时间
stringredistemplate.opsforset().ismember("red_123", "1")//根据key查看集合中是否存在指定数据
stringredistemplate.opsforset().members("red_123");//根据key获取set集合
3.3、stringredistemplate的使用
使用 @autowired 注解注入stringredistemplate。
package com.xiao;
import org.junit.jupiter.api.test;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.boot.test.context.springboottest;
import org.springframework.data.redis.connection.datatype;
import org.springframework.data.redis.core.stringredistemplate;
import java.util.*;
import java.util.arraylist;
import java.util.concurrent.timeunit;
import static java.util.concurrent.timeunit.*;
//启动springboot应用
@springboottest(classes = redisday2application.class)
public class teststringredistemplate {
//注入stringredistemplate
@autowired
private stringredistemplate stringredistemplate; //key value都是字符串
//操作key相关
@test
public void testkey(){
//stringredistemplate.delete("name"); //删除一个key
boolean haskey = stringredistemplate.haskey("name");//判断一个key是否存在
system.out.println(haskey);
datatype name = stringredistemplate.type("name");//判断key所对应的类型
system.out.println(name);
set keys = stringredistemplate.keys("*");
keys.foreach(key-> system.out.println("key = " key));
long expire = stringredistemplate.getexpire("age");//获取key超时时间 -1 永不超时 -2 key不存在 >=0 过期时间
system.out.println(expire);
//stringredistemplate.rename("name","name1"); //修改可以名字 判断key是否存在
stringredistemplate.move("name1",1); //移动可以到指定库
}
//操作redis字符串 opsforvalue 实际操作就是redis中string类型
@test
public void teststring(){
stringredistemplate.opsforvalue().set("name","小陈"); // set 设置一个key value
string value = stringredistemplate.opsforvalue().get("name"); //用来获取一个key对应value
system.out.println("value = " value);
stringredistemplate.opsforvalue().set("code","2357", 120,timeunit.seconds); //设置一个key超时时间
stringredistemplate.opsforvalue().append("name",",他是一个好人!"); //追加
}
//操作redis中的list类型 opsforlist 实际操作的就是redis中的list类型
@test
public void testlist(){
stringredistemplate.opsforlist().leftpush("names","小陈"); //创建一个列表,并放入一个元素
stringredistemplate.opsforlist().leftpushall("names","小陈","小张","小王"); //创建一个列表,并放入多个元素
arraylist names = new arraylist<>();
names.add("xiaoming");
names.add("xiaosan");
stringredistemplate.opsforlist().leftpushall("names",names);
list stringlist = stringredistemplate.opsforlist().range("names", 0, -1); //遍历list
stringlist.foreach(value-> system.out.println("value = " value));
stringredistemplate.opsforlist().trim("names",1,3); //截取指定区间的list
}
//操作redis中的set类型 opsforset 实际操作的就是redis中的set类型
@test
public void testset(){
stringredistemplate.opsforset().add("sets","李四","王五"); //创建set 并放入多个元素
set sets = stringredistemplate.opsforset().members("sets"); //查看set中成员
sets.foreach(value-> system.out.println("value = " value));
long size = stringredistemplate.opsforset().size("sets");//获取set集合元素个数
system.out.println("size = " size);
}
//操作redis中的zset类型
@test
public void testzset(){
stringredistemplate.opsforzset().add("zsets","张三",1000); //创建并放入元素
set zsets = stringredistemplate.opsforzset().range("zsets", 0, -1);//指定范围查询
zsets.foreach(value-> system.out.println("value = " value));
}
//操作redis中hash类型 opsforhash 实际操作的就是redis中的hash类型
@test
public void testhash(){
stringredistemplate.opsforhash().put("maps","name","张三"); //创建一个hash类型 并放入key value
hashmap map = new hashmap();
map.put("age","18");
map.put("bir","2020-12-12");
stringredistemplate.opsforhash().putall("maps",map); //放入多个key value
list