Redis 安装与 Spring Boot 集成指南

ops/2025/1/11 21:25:44/

安装 Redis 和将其与 Spring Boot 应用集成是构建高效缓存解决方案的常见步骤。以下是详细的指南,帮助你在本地环境中安装 Redis,并在 Spring Boot 项目中配置和使用它。

1. 安装 Redis

Windows 环境

Redis 官方并不直接支持 Windows,但你可以通过以下几种方式在 Windows 上运行 Redis:

  • Chocolatey:如果已经安装了 Chocolatey 包管理器,可以通过命令行安装 Redis。

    choco install redis-64
  • Docker:推荐使用 Docker 来运行 Redis 容器,这样可以避免兼容性问题。

    docker pull redis
    docker run --name myredis -p 6379:6379 -d redis
  • MS Open Tech 版本:也可以从 MSOpenTech GitHub 下载适用于 Windows 的 Redis 版本。

macOS 环境

macOS 用户可以通过 Homebrew 安装 Redis:

brew install redis

启动 Redis 服务:

brew services start redis
Linux 环境

大多数 Linux 发行版自带 Redis 包,可以直接通过包管理器安装:

sudo apt-get update
sudo apt-get install redis-server

启动 Redis 服务:

sudo systemctl start redis.service

确保 Redis 正常运行后,可以通过 redis-cli 命令行工具测试连接:

redis-cli ping

如果返回 PONG,则表示 Redis 已经正确安装并正在运行。

2. 在 Spring Boot 中配置 Redis

添加依赖项

首先,在你的 build.gradlepom.xml 文件中添加必要的依赖项以启用对 Redis 的支持。

Gradle
dependencies {implementation 'org.springframework.boot:spring-boot-starter-data-redis'// 如果你打算使用 Lettuce 连接池implementation 'io.lettuce:lettuce-core'
}
Maven
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- 如果你打算使用 Lettuce 连接池 -->
<dependency><groupId>io.lettuce</groupId><artifactId>lettuce-core</artifactId>
</dependency>
配置 application.properties 或 application.yml

接下来,编辑 application.propertiesapplication.yml 文件来配置 Redis 连接信息。

application.properties
# Redis server address (default is localhost)
spring.redis.host=localhost
# Redis server port (default is 6379)
spring.redis.port=6379
# Redis password if any
# spring.redis.password=
# Database index used by the connection factory
# spring.redis.database=0
# Connection pool settings
spring.redis.lettuce.pool.max-active=8
spring.redis.lettuce.pool.max-idle=8
spring.redis.lettuce.pool.min-idle=0
application.yml
spring:redis:host: localhostport: 6379# password: your_password_heredatabase: 0lettuce:pool:max-active: 8max-idle: 8min-idle: 0
编写 Redis 操作代码

最后,编写一些简单的 Java 类来进行 Redis 操作。Spring Data Redis 提供了 RedisTemplateStringRedisTemplate,它们简化了与 Redis 的交互。

示例:RedisConfig.java
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.StringRedisSerializer;@Configuration
public class RedisConfig {@Beanpublic RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {RedisTemplate<String, Object> template = new RedisTemplate<>();template.setConnectionFactory(factory);template.setKeySerializer(new StringRedisSerializer());template.setValueSerializer(new StringRedisSerializer());return template;}
}
示例:RedisService.java
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;@Service
public class RedisService {private final RedisTemplate<String, Object> redisTemplate;@Autowiredpublic RedisService(RedisTemplate<String, Object> redisTemplate) {this.redisTemplate = redisTemplate;}public void set(String key, Object value) {redisTemplate.opsForValue().set(key, value);}public Object get(String key) {return redisTemplate.opsForValue().get(key);}public void delete(String key) {redisTemplate.delete(key);}
}

3. 测试 Redis 功能

创建一个简单的控制器或单元测试来验证 Redis 是否正常工作。

示例:RedisController.java
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;@RestController
@RequestMapping("/api/redis")
public class RedisController {private final RedisService redisService;@Autowiredpublic RedisController(RedisService redisService) {this.redisService = redisService;}@PostMapping("/set/{key}/{value}")public String set(@PathVariable String key, @PathVariable String value) {redisService.set(key, value);return "Set key " + key + " with value " + value;}@GetMapping("/get/{key}")public Object get(@PathVariable String key) {return redisService.get(key);}@DeleteMapping("/delete/{key}")public String delete(@PathVariable String key) {redisService.delete(key);return "Deleted key " + key;}
}

总结

通过以上步骤,你应该能够在本地成功安装 Redis,并且将它与 Spring Boot 应用程序集成起来。这不仅有助于提高应用程序的性能,还能为开发者提供一个强大的工具来管理和优化数据存储。


http://www.ppmy.cn/ops/149252.html

相关文章

自动驾驶领域的基础模型综述

论文地址&#xff1a;Forging Vision Foundation Models for Autonomous Driving: Challenges, Methodologies, and Opportunitie 0 Abstract 论文摘要解读 这篇论文讨论了**大规模基础模型&#xff08;Foundation Models&#xff09;在人工智能&#xff08;AI&#xff09;领…

Jmeter全流程性能测试实战

&#x1f345; 点击文末小卡片&#xff0c;免费获取软件测试全套资料&#xff0c;资料在手&#xff0c;涨薪更快 项目背景&#xff1a; 我们的平台为全国某行业监控平台&#xff0c;经过3轮功能测试、接口测试后&#xff0c;98%的问题已经关闭&#xff0c;决定对省平台向…

uni-app无限级树形组件简单实现

因为项目一些数据需要树形展示&#xff0c;但是官网组件没有。现在简单封装一个组件在app中使用&#xff0c;可以无线嵌套&#xff0c;展开&#xff0c;收缩&#xff0c;获取子节点数据等。 简单效果 组件TreeData <template><view class"tree"><te…

分布式训练相关问题总结

1. 训练 大语言模型 存在哪些问题&#xff1f; 计算资源需求&#xff1a;训练大型语言模型需要大量的计算资源&#xff0c;包括高端 GPU、大量的内存和高速存储器。这可能限制了许多研究人员和组织的训练能力&#xff0c;因为这些资源通常很昂贵。数据需求&#xff1a;训练大型…

后端:Spring(IOC、AOP)

文章目录 1. Spring2. IOC 控制反转2-1. 通过配置文件定义Bean2-1-1. 通过set方法来注入Bean2-1-2. 通过构造方法来注入Bean2-1-3. 自动装配2-1-4. 集合注入2-1-5. 数据源对象管理(第三方Bean)2-1-6. 在xml配置文件中加载properties文件的数据(context命名空间)2-1-7. 加载容器…

2025新春烟花代码(二)HTML5实现孔明灯和烟花效果

效果展示 源代码 <!DOCTYPE html> <html lang"en"> <script>var _hmt _hmt || [];(function () {var hm document.createElement("script");hm.src "https://hm.baidu.com/hm.js?45f95f1bfde85c7777c3d1157e8c2d34";var …

CAPL概述与环境搭建

CAPL概述与环境搭建 目录 CAPL概述与环境搭建1. CAPL简介与应用领域1.1 CAPL简介1.2 CAPL的应用领域 2. CANoe/CANalyzer 安装与配置2.1 CANoe/CANalyzer 简介2.2 安装CANoe/CANalyzer2.2.1 系统要求2.2.2 安装步骤 2.3 配置CANoe/CANalyzer2.3.1 配置CAN通道2.3.2 配置CAPL节点…

弹性云服务器和普通服务器的区别

云服务器随着云计算的快速发展&#xff0c;也受到了各个企业的广泛使用&#xff0c;随着业务需求的不断变化&#xff0c;云服务器的类型也在不断进行细化&#xff0c;其中弹性云服务器逐渐受到企业的欢迎&#xff0c;那么弹性云服务器和普通服务器究竟有什么区别呢&#xff1f;…