springboot整合redis配置問題
一、不同版本RedisProperties的區別
1.這是springboot版本為1.3.2RELEASE中的RedisProperties配置檔案類,從圖片中可以看得出來該本的redis配置檔案屬性有兩個內部靜態類分別是Pool和Sentinel,七個屬性變數。列入我們想在配置檔案中設定redis資料庫host地址,則可以這樣寫
spring.redis.host=localhost host為屬性,配置連線池的最大連線數 spring.redis.pool.max-active=8
這個是redis在application.properties中springboot低版本的配置
# REDIS (RedisProperties)
# Redis資料庫索引(預設為0)
spring.redis.database=0
# Redis伺服器地址
spring.redis.host=localhost
# Redis伺服器連線埠
spring.redis.port=6379
# Redis伺服器連線密碼(預設為空)
spring.redis.password=
# 連線池最大連線數(使用負值表示沒有限制)
spring.redis.pool.max-active=8
# 連線池最大阻塞等待時間(使用負值表示沒有限制)
spring.redis.pool.max-wait=-1
# 連線池中的最大空閒連線
spring.redis.pool.max-idle=8
# 連線池中的最小空閒連線
spring.redis.pool.min-idle=0
# 連線超時時間(毫秒)
spring.redis.timeout=0
2.下圖則是springboot版本為2.0.2RELEASE中的RedisProperties配置檔案類,從圖中可知pool屬性則被封裝到了內部靜態類Jedis和Lettuce中去了,這時我們要是配置連線池的最大連線數,字首還是spring.redis,有兩種途徑
spring.redis.jedis.pool.max-active=8 或者 spring.redis.lettuce.pool.max-active=8
這個是redis在application.properties中springboot高版本的配置
# REDIS (RedisProperties)
# Redis資料庫索引(預設為0)
spring.redis.database=0
# Redis伺服器地址
spring.redis.host=localhost
# Redis伺服器連線埠
spring.redis.port=6379
# Redis伺服器連線密碼(預設為空)
spring.redis.password=
# 連線池最大連線數(使用負值表示沒有限制)
spring.redis.jedis.pool.max-active=8
# 連線池最大阻塞等待時間(使用負值表示沒有限制)
spring.redis.jedis.pool.max-wait=-1
# 連線池中的最大空閒連線
spring.redis.jedis.pool.max-idle=8
# 連線池中的最小空閒連線
spring.redis.jedis.pool.min-idle=0
# 連線超時時間(毫秒)
spring.redis.timeout=0
2、maven下pom中的座標配置
springboot版本1.4以下
<!--引入 spring-boot-starter-redis(1.4版本前)-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<version>1.3.2.RELEASE</version>
</dependency>
springboot版本1.4以上
<!--引入 spring-boot-starter-data-redis(1.4版本後)多了個data加個紅和粗吧-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
參考:https://blog.csdn.net/qq_33326449/article/details/80457571