SpringBoot整合Redis

前期工作

下载安装,开启Redis服务

步骤:Redis下载安装-CSDN博客

一.搭建SpringBoot项目

使用Spring initializr创建

二.引入Redis依赖

创建完后,可以在pom.xml中看到Redis的依赖,该依赖提供了RedisTemplate的使用功能,可以通过RedisTemplate对Redis进行操作。

复制代码
 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
 </dependency>

在test中测试Redis是否成功

首先启动本地Redis服务(也可以用本地电脑中的"服务"界面去启动)

三.测试Redis的基本操作

详解 RedisTemplate 的 API方法,如后文附加

在测试类中基本操作

通常我们项目存储的是对象进行操作,所以可以通过Spring封装的Redis,可以将Java对象存入Redis中,而取出来之后也只需要强转一下就OK,案例如下

复制代码
package com.example.springredis;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringRedisApplicationTests {

    @Autowired
    private RedisTemplate redisTemplate;

    @Autowired
    private Student student,student2;    //自动生成两个对象

    @Test
    public void testSetRedis(){
        //1.存入普通键值对数据
        redisTemplate.boundValueOps("name").set("zhangsan");
        redisTemplate.opsForValue().set("a",1);


        //2.在redis中存入对象
        student.setName("zhangsan");
        student.setAge(19);
        //redisTemplate.opsForValue()方法存储对象
        redisTemplate.opsForValue().set("s1",student);   //将Student对象序列化存储在redis中



    }
    @Test
    public void testGetRedis(){
        //1.获取数据
        Object name=redisTemplate.boundValueOps("name").get();
        int a=(int) redisTemplate.opsForValue().get("a");
        System.out.println(name);
        System.out.println(a);

        //2.获取对象(反序列)
        Student student1=(Student) redisTemplate.opsForValue().get("s1");
        System.out.println(student1);

    }

}

也可以自定义一个RedisUtil操作类,对对象进行操作

首先需要重新定义RedisConfig配置类,该类作用是将RedisTemplate类型的存储类型结构变为redisTemplate<String,Object>。代码如下

复制代码
package com.example.springredis;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;

@Configuration
public class RedisConfig {
    /**
     * RedisTemplate配置
     */
    @Bean
    public RedisTemplate<String, Object> redisTemplate(LettuceConnectionFactory lettuceConnectionFactory) {
        // 设置序列化
        Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);
        ObjectMapper om = new ObjectMapper();
        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
        jackson2JsonRedisSerializer.setObjectMapper(om);
        // 配置redisTemplate
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(lettuceConnectionFactory);

        RedisSerializer<?> stringSerializer = new StringRedisSerializer();
        // key序列化
        redisTemplate.setKeySerializer(stringSerializer);
        // value序列化
        redisTemplate.setValueSerializer(jackson2JsonRedisSerializer);
        // Hash key序列化
        redisTemplate.setHashKeySerializer(stringSerializer);
        // Hash value序列化
        redisTemplate.setHashValueSerializer(jackson2JsonRedisSerializer);
        redisTemplate.afterPropertiesSet();
        return redisTemplate;
    }
}

然后再自定义一个RedisUtil类

复制代码
package com.example.springredis;


import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;

@Slf4j
@Component
public class RedisUtil {

    @Autowired
    private RedisTemplate<String, Object> redisTemplate;

    /**
     * 根据key读取数据
     */
    public Object get(final String key) {
        //不能直接创建,因为RedisTemplate没有配置连接工厂
//        RedisTemplate<String, Object> redisTemplate=new RedisTemplate<>();
        if (StringUtils.isBlank(key)) {
            return null;
        }
        try {
            return redisTemplate.opsForValue().get(key);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * 写入数据
     */
    public boolean set(final String key, Object value) {
        //不能直接创建,因为RedisTemplate没有配置连接工厂
//        RedisTemplate<String, Object> redisTemplate=new RedisTemplate<>();
        if (StringUtils.isBlank(key)) {
            return false;
        }
        try {
            redisTemplate.opsForValue().set(key, value);
            log.info("存入redis成功,key:{},value:{}", key, value);
            return true;
        } catch (Exception e) {
            log.error("存入redis失败,key:{},value:{}", key, value);
            e.printStackTrace();
        }
        return false;
    }
}

最后去测试这个RedisUtil类,对对象进行操作

复制代码
package com.example.springredis;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringRedisApplicationTests {

    @Autowired
    private RedisTemplate redisTemplate;

    @Autowired
    private RedisUtil redisUtil;   //自定义一个RedisUtil操作类

    @Autowired
    private Student student,student2;    //自动生成两个对象

    @Test
    public void testSetRedis(){

        //3.使用Redis工具类RedisUtil
        student2.setName("李四");
        student2.setAge(20);
        redisUtil.set("s2",student2);

    }
    @Test
    public void testGetRedis(){

        //3.使用Redis工具类从Redis中获取对象
        Student s2=(Student) redisUtil.get("s2");
        System.out.println(s2);

    }

}

四.连接的Redis不是本地,而是其他

需要在application.yaml配置文件中配置Redis连接参数

复制代码
#将来连接的Redis不是本地,需要设置连接参数
spring:
  redis:
    host: 127.0.0.1   #redis主机名
    port: 6379        #端口号
#    password: 123456   #redis的密码

附加:详解 RedisTemplate 的 API方法

1.常用数据操作

若以 bound 开头,则意味着在操作之初就会绑定一个 key,后续的所有操作便默认认为是对该 key 的操作。

相关推荐
RuoyiOffice17 分钟前
SpringBoot3+Vue3 最推荐的开源 OA 系统 2026:流程驱动、资源闭环、多端互通
spring boot·vue3·flowable·oa·协同办公·spring boot 3·开源oa
Lost of 程序猿29 分钟前
ASP.NET Core API 版本管理与契约演进:船岸版本碎片化下的兼容性工程
后端·asp.net
吃饱了得干活39 分钟前
Redis 从单机到集群:持久化、主从复制、哨兵与集群完全指南
redis·后端
老孙讲技术1 小时前
【监控开发】把车间未戴帽和烟火报警接进安监值班群:workwearDetect 对图与 setMessageCallback 订 smokeAlarm
后端·物联网·音视频开发
计算机毕设定制辅导-无忧学长1 小时前
基于Spring Boot的玄幻小说个性化推荐平台设计与实现
java·vue.js·spring boot·后端·mysql·推荐算法
码路漫漫1 小时前
LRU 真的能解决日志按业务 Key 分文件的落地瓶颈吗?
java·后端
小满zs1 小时前
Go语言第十一章(协程)
后端·go
Harry Lei1 小时前
长期记忆系统的设计与实现
spring boot·postgresql·embedding
星星落进兜里1 小时前
Redis 内存缓存,面试补充
数据库·redis·面试
小程故事多_802 小时前
企业AI对话记忆架构实战,告别单一Redis存储,搭建长短效协同的记忆体系
人工智能·redis·架构