Spring Boot 集成 Spring Data Redis 完整指南
1. 添加依赖
在项目的 pom.xml
文件中添加 Spring Data Redis 的依赖。Spring Boot 提供了 spring-boot-starter-data-redis
,它默认使用 Lettuce 作为 Redis 客户端。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
如果需要使用 Jedis 作为客户端,可以排除 Lettuce 并添加 Jedis 依赖。
2. 配置 Redis 连接
在 application.yml
或 application.properties
文件中配置 Redis 的连接信息。
application.yml 示例:
spring:
redis:
host: 127.0.0.1 # Redis 服务器地址
port: 6379 # Redis 服务器端口
password: # Redis 密码(如果有)
database: 0 # 数据库索引(默认为0)
timeout: 1800000 # 连接超时时间(毫秒)
lettuce:
pool:
max-active: 20 # 连接池最大连接数
max-wait: -1 # 最大阻塞等待时间(负数表示无限制)
max-idle: 5 # 最大空闲连接数
min-idle: 0 # 最小空闲连接数
从 Spring Boot 2.x 开始,推荐使用 spring.data.redis
配置方式。
3. 创建 Redis 配置类
创建一个配置类来定义 RedisTemplate
,并设置序列化器。
package com.example.config;
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 {
@Bean
public 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;
}
}
4. 编写 Redis 操作类
创建一个服务类来封装 Redis 的常用操作。
package com.example.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;
@Service
public class RedisService {
@Autowired
private RedisTemplate<String, Object> redisTemplate;
public void setValue(String key, Object value) {
redisTemplate.opsForValue().set(key, value);
}
public Object getValue(String key) {
return redisTemplate.opsForValue().get(key);
}
public void deleteValue(String key) {
redisTemplate.delete(key);
}
}
5. 使用 Redis
在业务逻辑中注入 RedisService
或直接使用 RedisTemplate
来操作 Redis。
6. 启动并测试
启动 Spring Boot 应用程序后,可以通过编写测试代码或使用工具(如 Postman)验证 Redis 的操作是否成功。
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· 用99元买的服务器搭一套CI/CD系统
· Excel百万数据如何快速导入?
· ShadowSql之.net sql拼写神器