当前位置: 首页 > article >正文

redis学习(三)——java整合redis

Jedis

Jedis可以用于java连接redis数据库

新建一个maven项目,导入Jedis依赖

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter</artifactId>
    <version>RELEASE</version>
    <scope>test</scope>
</dependency>
public class RedisTest {

    private Jedis jedis;
    @BeforeEach
    void setUp() {
        // 建立连接
        jedis = new Jedis("192.168.211.132", 6379);
        // 设置密码
        //jedis.auth("123456");
        // 选择库
        jedis.select(0);
    }

    @Test
    void testString() {
        // 插入数据,方法名称就是redis命令名称,非常简单
        String result = jedis.set("name", "李四");
        System.out.println("result = " + result);
        // 获取数据
        String name = jedis.get("name");
        System.out.println("name = " + name);
    }

    @AfterEach
    void tearDown() {
        // 释放资源
        if (jedis != null) {
            jedis.close();
        }
    }
}

运行结果:

在这里插入图片描述

如果运行报Failed to resolve org.junit.platform:junit-platform-launcher:1.8.2可能是由于IDEA版本的问题,可以试一下添加以下依赖

<!--        Failed to resolve org.junit.platform:junit-platform-launcher:1.8.2-->
<dependency>
    <groupId>org.junit.platform</groupId>
    <artifactId>junit-platform-launcher</artifactId>
    <scope>test</scope>
</dependency>
Jedis连接池

Jedis本身是线程不安全的,并且频繁的创建和销毁连接会有性能损耗,推荐使用Jedis连接池

public class JedisConnectionFactory {
    private static final JedisPool jedisPool;

    static {
        JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();
        // 最大连接
        jedisPoolConfig.setMaxTotal(8);
        // 最大空闲连接
        jedisPoolConfig.setMaxIdle(8);
        // 最小空闲连接
        jedisPoolConfig.setMinIdle(0);
        // 设置最长等待时间, ms
        jedisPoolConfig.setMaxWaitMillis(200);
        jedisPool = new JedisPool(jedisPoolConfig, "192.168.211.132", 6379, 1000);
    }

    // 获取Jedis对象
    public static Jedis getJedis() {
        return jedisPool.getResource();
    }
}
springboot整合redis

首先新建一个springboot项目

导入依赖,这里我后面会用到lombok和test测试,一并导入

       <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

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

application.yml配置文件,配置文件加中文可能会出现问题,如果报错可以去掉中文再试试。

spring:
  redis:
    host: 
    00
    
    # redis数据库地址
    port: 6379  # 端口
    lettuce:
      pool:
        max-active: 8 # 最大连接
        max-idle: 8 # 最大空闲连接
        min-idle: 0 # 最小空闲连接
        max-wait: 100 # 连接等待时间
    database: 1  # 使用的数据库
redisTemplate使用

新建一个springbootTest类,然后注入redisTemplate,之后就可以使用redisTemplate对redis数据库进行操作了。其中opsForValue()表示对String类型的数据进行操作,如果想对Hash进行操作,使用opsForHash()即可,其余同理。

@SpringBootTest
class DemoApplicationTests {

    @Autowired
    private RedisTemplate redisTemplate;
     /**
     * 在未添加redisConfig类之前,redisTemplate插入redis数据库会有其他序列化前缀,
     */
    @Test
    void testString() {
        Object name = redisTemplate.opsForValue().get("zhangsan");
        redisTemplate.opsForValue().set("aaa", "测试");

        System.out.println(redisTemplate.opsForValue().get("aaa"));
        System.out.println(name);
    }
}

可以看到输出结果,如果使用redisTemplate插入redis1的数据就可以查找到,但是原来就有的数据查不到

在这里插入图片描述

再进redis数据库里面查看可以发现插入数据库中的键和值并不和想象中的一样。这是因为redisTemplate会将Object进行序列化
在这里插入图片描述

自定义RedisTemplate序列化

我们可以自定义redisTemplate的序列化方式

新建一个redisConfig类,key和value都采用String序列化方式

@Configuration
public class RedisConfig {

    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory)
            throws UnknownHostException {
        // 创建Template
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        // 设置连接工厂
        redisTemplate.setConnectionFactory(redisConnectionFactory);
        // 设置序列化工具
        GenericJackson2JsonRedisSerializer jsonRedisSerializer = new GenericJackson2JsonRedisSerializer();
        // key和 hashKey采用 string序列化
        redisTemplate.setKeySerializer(RedisSerializer.string());
        redisTemplate.setHashKeySerializer(RedisSerializer.string());
        // value和 hashValue采用 JSON序列化
        redisTemplate.setValueSerializer(jsonRedisSerializer);
        redisTemplate.setHashValueSerializer(jsonRedisSerializer);
        return redisTemplate;
    }
}

这里使用了jackson,需要导入一下依赖

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

新建一个测试类试一下效果

/**
 * redisTemplate 序列化之后,可以自动将json字符串转化为实体类
 */
@Test
void testStringBean() {
    redisTemplate.opsForValue().set("user:zhangsan", new User("zhangsan", "20", "男"));
    User user = (User)redisTemplate.opsForValue().get("user:zhangsan");
    System.out.println(user);
}

这里由于在序列化的时候还存储了实体类的类型,所以可以使用强转实现类型转换

在这里插入图片描述

在这里插入图片描述

使用StringRedisTemplate

StringRedisTemplate的key和value为String类型,可以在获取到json之后使用其他工具类或者手动实现序列化

    @Autowired
    private StringRedisTemplate stringRedisTemplate;

    private static final ObjectMapper mapper = new ObjectMapper();
/**
 * 使用stringredisTemplate 获取对象为字符串,可以通过json工具转化为实体类,无法自动转化
 */
@Test
void testStringRedisTemplate() throws Exception{
    System.out.println(stringRedisTemplate.opsForValue().get("lisi"));

    User u = new User("lisi","15", "男");
    stringRedisTemplate.opsForValue().set("user:lisi", mapper.writeValueAsString(u));
    String s = stringRedisTemplate.opsForValue().get("user:lisi");
    System.out.println(s);
    User user = mapper.readValue(s,User.class);
    System.out.println(user);
}

在这里插入图片描述


http://www.kler.cn/a/106019.html

相关文章:

  • Gin HTML 模板渲染
  • Vue3中实现插槽使用
  • C++线程基础使用方法
  • vulhub之log4j
  • 华为ensp实验二--mux vlan的应用
  • 脑机接口、嵌入式 AI 、工业级 MR、空间视频和下一代 XR 浏览器丨RTE2024 空间计算和新硬件专场回顾
  • Ubuntu22.04 搭建 OpenHarmony 命令行开发环境
  • 记一次 .Net+SqlSugar 查询超时的问题排查过程
  • Android帧率监测与优化技巧
  • 【LeetCode】102. 二叉树的层序遍历
  • 51.MongoDB聚合操作与索引使用详解
  • 为什么选择Codigger静态分析?
  • 【uniapp】小程序开发7:自定义组件、自动注册组件
  • 【FPGA零基础学习之旅#17】搭建串口收发与储存双口RAM系统
  • 嵌入式MCU学习利器-03-在线做RT-Thread实验
  • SDRAM学习笔记(MT48LC16M16A2,w9812g6kh)
  • MATLAB——一维离散小波的单层分解
  • Python 深度学习入门之CNN
  • 【详细】Java网络通信 TCP、UDP、InetAddress
  • 【人工智能专栏】(3)知识表示方法 II
  • 什么是云原生?土生土长?
  • hive窗口函数记录
  • 如何开通 Medium会员
  • Camera2开发基础知识篇——手机影像参数
  • 四、W5100S/W5500+RP2040树莓派Pico<TCP Server数据回环测试>
  • idea 中配置 maven