springboot集成redis配置
时间: 2023-10-26 10:08:23 浏览: 136
在Spring Boot中,集成Redis的配置如下:
1. 在pom.xml文件中添加Redis的相关依赖:
```
<!-- redis采用lettuce做客户端,lettuce需要配置线程池 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<!-- redis依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
2. 在application.properties或application.yml文件中添加Redis的配置信息:
```
spring.redis.host=192.168.44.132
spring.redis.port=6379
spring.redis.database=0
spring.redis.timeout=1800000
spring.redis.lettuce.pool.max-active=20
spring.redis.lettuce.pool.max-wait=-1 #最大阻塞等待时间(负数表示没限制)
spring.redis.lettuce.pool.max-idle=5
spring.redis.lettuce.pool.min-idle=0
```
以上就是在Spring Boot中集成Redis的配置方法。
阅读全文