1. 程式人生 > >ClusterHostAndPorts must not be null!

ClusterHostAndPorts must not be null!

使用springboot整合redis,啟動報錯,排查後發現是配置問題,配置叢集引數前先要配置叢集節點。

錯誤配置:

spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=pass123
spring.redis.timeout=1000

spring.redis.cluster.max-redirects=8

正確配置:

spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=pass123
spring.redis.timeout=1000

spring.redis.cluster.nodes=127.0.0.1:6379
spring.redis.cluster.max-redirects=8