springboot接入redis
时间: 2023-01-11 09:55:36 浏览: 124
要在 Spring Boot 中使用 Redis,需要按照以下步骤进行操作:
1. 在项目的 pom.xml 文件中加入 Redis 的依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
2. 在 application.properties 或 application.yml 中添加 Redis 的配置信息,例如:
```
spring.redis.host=localhost
spring.redis.port=6379
```
3. 在 Spring Boot 应用程序中使用 @Autowired 注入 RedisTemplate 或 StringRedisTemplate 即可使用 Redis。
例如:
```
@Autowired
private StringRedisTemplate stringRedisTemplate;
@Autowired
private RedisTemplate<String, Object> redisTemplate;
```
4. 使用 RedisTemplate 或 StringRedisTemplate 调用对应的 Redis 操作方法即可。
例如:
```
stringRedisTemplate.opsForValue().set("key", "value");
Object value = redisTemplate.opsForValue().get("key");
```
希望以上内容能帮到你!
阅读全文