Redis异常报错:redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool

这里贴出错误截图

Redis异常报错:redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool_第1张图片

如图所示异常信息。百度上搜到好多是关于链接问题,客户端ping不到值。这里我的情况与他们不同,我是可以ping到的。

@Test
    public void testJedisClientSpring() {

        jedisClient.set("0000","123");
        String s = jedisClient.get("0000");
        System.out.println(s);
    }

这是测试代码。获取value值。

解决办法

我启动redis配置文件为自己配置的。内容如下

#修改为守护模式
daemonize no
#保护模式
protected-mode no

Redis异常报错:redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool_第2张图片
重新启动redis服务就行了。

参考文章连接

https://blog.csdn.net/only1994/article/details/52785306

你可能感兴趣的:(Redis)