springboot整合redis的配置文件client-type变成什么了
时间: 2023-12-10 15:06:33 浏览: 231
springboot 整合ehcache+redis 通过配置文件切换缓存类型
在Spring Boot 2.x版本中,Redis的客户端类型默认为Lettuce,因此不需要进行配置。如果要使用Jedis作为Redis客户端,需要在配置文件中添加以下配置:
```
spring.redis.client-type=jedis
```
如果使用的是Spring Boot 1.x版本,则需要将配置文件中的以下配置项设置为true:
```
spring.redis.use-jedis=true
```
阅读全文