Redis 详细介绍 安装与使用可参考上篇博客
在 Spring Boot 中使用 Redis 可以利用 Spring Data Redis 提供的简化 API。Spring Data Redis 使得在 Spring 应用程序中集成 Redis 更加方便。以下是如何在 Spring Boot 项目中使用 Redis 的详细步骤,亲测可用
1. 添加依赖
首先,你需要在 Spring Boot 项目的 pom.xml
文件中添加 spring-boot-starter-data-redis
依赖。这个 starter 包含了使用 Redis 所需的所有基本依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2. 配置 Redis 连接
在 application.properties
或 application.yml
文件中配置 Redis 连接信息。
使用 application.properties
配置:
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password&#