Jedis连接Redis报错: Could not get a resource from the pool

Jedis连接Redis报错: Could not get a resource from the pool

最近在网上copy了一份Redis工具类以及配置相关配置, junit一下报错Could not get a resource from the pool, 以下是配置。
Jedis连接Redis报错: Could not get a resource from the pool_第1张图片
Jedis连接Redis报错: Could not get a resource from the pool_第2张图片
开始找原因, 这里写几行代码作测试使用,如下
Jedis连接Redis报错: Could not get a resource from the pool_第3张图片
运行报错
在这里插入图片描述
意思是我的服务器上redis没有密码,但我代码中的配置文件里却设置了密码, 奥奥, 这样,
于是注释掉上图中spring.redis.password=123456以及RedisConfig中的private String password上的@Value注解。
OK,成了!

你可能感兴趣的:(redis,Java,Linux)