SpringBoot集成redis入门教程

11 篇文章 0 订阅
2 篇文章 0 订阅
本文是一篇关于SpringBoot集成Redis的入门教程,从新建SpringBoot项目开始,逐步讲解添加spring-data依赖、配置属性、启动Redis服务器,以及编写Java程序进行连接测试。通过示例展示如何使用StringRedisTemplate进行键值对操作,并验证数据是否成功存储。
摘要由CSDN通过智能技术生成

1.新建一个springBoot web项目

具体教程可以参见此篇博文:https://blog.csdn.net/qq_37856300/article/details/86223134

2.添加spring-data依赖

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

3.在application.properties中添加配置

# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址(可以在此填写远程redis服务器地址)
spring.redis.host=127.0.0.1
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=200

4.在安装目录下编辑redis配置文件redis.conf

projected-mode yes修改为projected-mode no受保护模式关闭,即可允许远程访问redis:
在这里插入图片描述

5.在linux中启动redis

输入redis-server即可启动redis

启动后输入redis-cli即可进入redis控制台

6.编写java程序

这里我用junit写了一个小的测试类,如果不了解的直接在主方法中写也是可以的,这里我使用的是StringRedisTemplate,是用来存储key和value都是String类型的,使用别的来做测试也是可以的。

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.StringRedisTemplate;
import org.springframework.test.context.junit4.SpringRunner;

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

    @Autowired
    StringRedisTemplate stringRedisTemplate;

    @Test
    public void contextLoads() {
        stringRedisTemplate.opsForValue().set("aaa","111");
    }

}

7.运行

直接运行程序,然后去redis服务器验证一下有没有将值保存进去即可:
在这里插入图片描述

可以看到,输入key aaa可以取到value为111的值,大功告成!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值