springboot 单机 redis 连接报错 ClusterHostAndPorts must not be null!
时间: 2024-03-01 20:54:09 浏览: 161
springboot项目链接redis哨兵集群使用
这个错误提示表明你在单机模式下使用了 Redis 集群的配置,导致连接失败。可以检查一下你的 Redis 连接配置中是否有以下类似的代码:
```
RedisClusterConfiguration config = new RedisClusterConfiguration(clusterNodes);
```
如果有的话,将其替换为以下代码:
```
RedisStandaloneConfiguration config = new RedisStandaloneConfiguration(host, port);
```
其中 `host` 和 `port` 分别为 Redis 服务器的主机名和端口号。这样可以将 Redis 连接配置为单机模式,解决该报错问题。
阅读全文