springboot如何整合redis
时间: 2023-08-29 13:13:32 浏览: 94
springboot整合redis
Spring Boot整合Redis主要分为两个步骤:引入依赖和配置Redis连接。
首先,在pom.xml文件中引入以下依赖:
```
<!-- Redis依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
然后,在application.properties文件中配置Redis连接信息:
```
# Redis连接配置
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=123456
```
配置完成后,就可以通过以下方式来使用Redis:
```
@Autowired
private RedisTemplate<String, Object> redisTemplate;
```
使用redisTemplate进行redis操作。 例如:
```
redisTemplate.opsForValue().set("key", "value", timeout, TimeUnit.SECONDS);
```
阅读全文