⑩【Redis Java客户端】:Jedis、SpringDataRedis、StringRedisTemplate

本文主要是介绍⑩【Redis Java客户端】:Jedis、SpringDataRedis、StringRedisTemplate,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述

个人简介:Java领域新星创作者;阿里云技术博主、星级博主、专家博主;正在Java学习的路上摸爬滚打,记录学习的过程~
个人主页:.29.的博客
学习社区:进去逛一逛~

在这里插入图片描述

Jedis、SpringDataRedis、StringRedisTemplate

  • Redis的Java客户端使用
    • 🚀Jedis快速入门
    • 🚀Jedis连接池
    • 🚀SpringDataRedis快速入门
    • 🚀自定义RedisTemplate的序列化方式
    • 🚀StringRedisTemplate序列化


Redis的Java客户端使用


🚀Jedis快速入门


引入依赖

<dependencies><!--Redis的Java客户端:Jedis  相关依赖--><dependency><groupId>redis.clients</groupId><artifactId>jedis</artifactId><version>4.3.0</version></dependency><!--单元测试依赖--><dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.9.2</version><scope>test</scope></dependency></dependencies>

测试Java客户端操作Redis

测试代码:

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import redis.clients.jedis.Jedis;import java.util.Map;/*** @author .29.* @create 2023-05-08 20:24*/public class JedisTest {private Jedis jedis;//链接Redis@BeforeEachvoid setUp(){//1.建立连接jedis = new Jedis("192.168.88.128",6379);//参数:ip地址、端口号//2.设置密码jedis.auth("123456");//3.选择库jedis.select(0);}//测试java客户端操作Redis(String类型操作)@Testpublic void test1(){//存入数据String result = jedis.set("name", ".29.");System.out.println("result = "+result);//获取数据String name = jedis.get("name");System.out.println("name = "+name);}//测试java客户端操作Redis(Hash类型操作)@Testpublic void test2(){//存入数据jedis.hset("user:1","name","Little29");jedis.hset("user:1","age","19");//获取数据Map<String, String> result = jedis.hgetAll("user:1");System.out.println(result);}//关闭资源@AfterEachvoid tearDown(){if(jedis != null){jedis.close();}}
}

测试结果:

⚪—操作String类型—⚪

在这里插入图片描述

⚪—操作hash类型—⚪

在这里插入图片描述




🚀Jedis连接池


为什么使用Jedis连接池

  • Jedis本身是线程不安全 的,并且频繁创建和销毁连接会有性能损耗 ,因此推荐大家使用Jedis连接池代替Jedis的直连 方式。

Jedis连接池——配置工具类

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
import java.time.Duration;/*** @author .29.* @create 2023-05-08 20:47*/
public class JedisConnectionFactory {//jedis连接池对象private static final JedisPool  jedisPool;static  {JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();//最大连接jedisPoolConfig.setMaxTotal(8);//最大空闲连接jedisPoolConfig.setMaxIdle(8);//最小空闲连接jedisPoolConfig.setMinIdle(0);//设置最长等待时间,单位msjedisPoolConfig.setMaxWait(Duration.ofMillis(1000));//jedisPoolConfig.setMaxWaitMillis(1000);//较早版本方式//参数:连接池配置、ip地址、端口号、超时时间、密码jedisPool = new JedisPool(jedisPoolConfig, "192.168.88.128",6379,1000,"123456");}//获取Jedis对象public static Jedis getJedis(){return jedisPool.getResource();}
}



🚀SpringDataRedis快速入门


SpringDataRedis简介

  • SpringData是Spring中数据操作的模块,包含对各种数据库的集成,其中对Redis的集成模块就叫做SpringDataRedis,官网网址:https://spring.io/projects/spring-data-redis

  • 功能介绍

    • 提供了对不同Redis客户端的整合(Lettuce和Jedis);
    • 提供RedisTemplate统一API来操作Reids;
    • 支持Redis的发布订阅模型;
    • 支持Reids哨兵和Redis集群;
    • 支持基于Lettuce的响应式编程;
    • 支持基于JDK、JSON、字符串、Spring对象的数据序列化和反序列化;
    • 支持基于Redis的JDKCollection实现;

在这里插入图片描述


引入依赖(需要是SpringBoot工程)

        <!--Redis依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency><!--连接池依赖--><dependency><groupId>org.apache.commons</groupId><artifactId>commons-pool2</artifactId></dependency>

application.yml配置

spring:redis:host: 192.168.88.128password: 123456port: 6379lettuce:pool:max-active: 8 #最大连接max-idle: 8   #最大空闲连接max-wait: 100 #连接等待时间min-idle: 0   #最小空闲连接

注入RedisTemplate,编写测试

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 SpringDataRedisDemoApplicationTests {//注入@Autowiredprivate RedisTemplate redisTemplate;@Testvoid contextLoads() {//写入一条String数据redisTemplate.opsForValue().set("age",19);//获取String数据Object age = redisTemplate.opsForValue().get("age");System.out.println("age = "+age);}}

SpringDataRedis的序列化方式

  • RedisTemplate可以接收任意Object作为值写入Redis,只不过写入前会把Object序列化成字节形式,默认是采用JDK序列化。
  • 但是此方式得到的结果:可读性差;内存占用大;(缺点)



🚀自定义RedisTemplate的序列化方式

自定义序列化

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;/*** @author .29.* @create 2023-05-09 16:12*/
@Configuration
public class RedisConfig {@Bean@ConditionalOnSingleCandidatepublic RedisTemplate<String,Object> redisTemplate(RedisConnectionFactory connectionFactory){//创建RedisTemplate对象RedisTemplate<String,Object> redisTemplate = new RedisTemplate<>();//设置连接工厂redisTemplate.setConnectionFactory(connectionFactory);//创建JSON序列化工具GenericJackson2JsonRedisSerializer jsonRedisSerializer = new GenericJackson2JsonRedisSerializer();//设置Key序列化(String类型)redisTemplate.setKeySerializer(RedisSerializer.string());redisTemplate.setHashKeySerializer(RedisSerializer.string());//设置value序列化(JSON格式)redisTemplate.setValueSerializer(jsonRedisSerializer);redisTemplate.setHashValueSerializer(jsonRedisSerializer);//返回return redisTemplate;}
}

注意

  • 需要导入SpringMVC依赖或Jackson依赖

Jackson依赖(SpringBoot项目,无须手动指定版本号):

        <dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId></dependency>

测试

@SpringBootTest
class SpringDataRedisDemoApplicationTests {//注入@Resourceprivate RedisTemplate<String,Object> redisTemplate;//测试操作Redis@Testvoid contextLoads() {//写入一条String数据redisTemplate.opsForValue().set("age",19);redisTemplate.opsForValue().set("name","自定义姓名");//获取String数据Object age = redisTemplate.opsForValue().get("age");Object name = redisTemplate.opsForValue().get("name");System.out.println("age = "+age);System.out.println("name = "+name);}}

注意

  • JSON的序列化方式满足我们的需求,单仍然存在问题:为了在反序列化时知道对象的类型,JSON序列化器会将类的class类型写入json结果中,存入Redis,会带来额外的内存开销
  • 为了节省空间,我们并不会使用JSON序列化器来处理value,而是统一使用String序列化器,要求只存储String类型的key和value。当需要存储java对象时,手动完成对象的序列化和反序列化



🚀StringRedisTemplate序列化

  • Spring默认提供了一个StringRedisTemplate类,它的key和value的系列化默认方式为String方式,省去自定义RedisTemplate的过程。

示例

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
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;
import org.springframework.data.redis.core.StringRedisTemplate;import javax.annotation.Resource;
import java.util.Map;@SpringBootTest
class RedisDemoApplicationTests {//使用StringRedisTemplate,手动进行序列化与反序列化@Resourceprivate StringRedisTemplate stringRedisTemplate;//JSON工具private static final ObjectMapper mapper = new ObjectMapper();@Testpublic void StringRedisTemplateTest() throws JsonProcessingException {//设置对象User user = new User("name3", 29);//手动序列化String set = mapper.writeValueAsString(user);//向Redis写入数据stringRedisTemplate.opsForValue().set("user:3",set);//向Redis获取数据String get = stringRedisTemplate.opsForValue().get("user:3");//手动反序列化User value = mapper.readValue(get, User.class);System.out.println("user:3 = "+value);}@Testpublic void testHash(){//向Redis存入Hash键值对stringRedisTemplate.opsForHash().put("user:4","HashName","name4");//向Redis获取Hash键值对Map<Object, Object> entries = stringRedisTemplate.opsForHash().entries("user:4");System.out.println(entries);}
}




在这里插入图片描述

这篇关于⑩【Redis Java客户端】:Jedis、SpringDataRedis、StringRedisTemplate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/425363

相关文章

在Ubuntu上部署SpringBoot应用的操作步骤

《在Ubuntu上部署SpringBoot应用的操作步骤》随着云计算和容器化技术的普及,Linux服务器已成为部署Web应用程序的主流平台之一,Java作为一种跨平台的编程语言,具有广泛的应用场景,本... 目录一、部署准备二、安装 Java 环境1. 安装 JDK2. 验证 Java 安装三、安装 mys

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

详谈redis跟数据库的数据同步问题

《详谈redis跟数据库的数据同步问题》文章讨论了在Redis和数据库数据一致性问题上的解决方案,主要比较了先更新Redis缓存再更新数据库和先更新数据库再更新Redis缓存两种方案,文章指出,删除R... 目录一、Redis 数据库数据一致性的解决方案1.1、更新Redis缓存、删除Redis缓存的区别二

JAVA中整型数组、字符串数组、整型数和字符串 的创建与转换的方法

《JAVA中整型数组、字符串数组、整型数和字符串的创建与转换的方法》本文介绍了Java中字符串、字符数组和整型数组的创建方法,以及它们之间的转换方法,还详细讲解了字符串中的一些常用方法,如index... 目录一、字符串、字符数组和整型数组的创建1、字符串的创建方法1.1 通过引用字符数组来创建字符串1.2

Redis与缓存解读

《Redis与缓存解读》文章介绍了Redis作为缓存层的优势和缺点,并分析了六种缓存更新策略,包括超时剔除、先删缓存再更新数据库、旁路缓存、先更新数据库再删缓存、先更新数据库再更新缓存、读写穿透和异步... 目录缓存缓存优缺点缓存更新策略超时剔除先删缓存再更新数据库旁路缓存(先更新数据库,再删缓存)先更新数

Redis事务与数据持久化方式

《Redis事务与数据持久化方式》该文档主要介绍了Redis事务和持久化机制,事务通过将多个命令打包执行,而持久化则通过快照(RDB)和追加式文件(AOF)两种方式将内存数据保存到磁盘,以防止数据丢失... 目录一、Redis 事务1.1 事务本质1.2 数据库事务与redis事务1.2.1 数据库事务1.

SpringCloud集成AlloyDB的示例代码

《SpringCloud集成AlloyDB的示例代码》AlloyDB是GoogleCloud提供的一种高度可扩展、强性能的关系型数据库服务,它兼容PostgreSQL,并提供了更快的查询性能... 目录1.AlloyDBjavascript是什么?AlloyDB 的工作原理2.搭建测试环境3.代码工程1.

mac安装redis全过程

《mac安装redis全过程》文章内容主要介绍了如何从官网下载指定版本的Redis,以及如何在自定义目录下安装和启动Redis,还提到了如何修改Redis的密码和配置文件,以及使用RedisInsig... 目录MAC安装Redis安装启动redis 配置redis 常用命令总结mac安装redis官网下

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

SpringBoot操作spark处理hdfs文件的操作方法

《SpringBoot操作spark处理hdfs文件的操作方法》本文介绍了如何使用SpringBoot操作Spark处理HDFS文件,包括导入依赖、配置Spark信息、编写Controller和Ser... 目录SpringBoot操作spark处理hdfs文件1、导入依赖2、配置spark信息3、cont