1、 报redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
解决方案:将服务端的redis.conf的"bind 127.0.0.1"注释,再将"protected-mode yes"改为"protected-mode no",用./src/redis-server ./redis.conf来启动,不然改了配置文件无效,这个是我亲测有效的方法,
其它的方法比如加大最大连接数或加大最小连接数及更改jedis版本,我这边没有碰到,我的服务端是redis-4.0.9,jedis是2.9.0