Caused by:redis.clients.jedis.exceptions.JedisConnectionException:Could not get a resource from the pool
解决方法:
在springboot项目中的application.xml文件中配置了redis连接池,但redis服务还没启动,导致项目连接不上redis。
redis:
database: 0
timeout: 0
# Redis服务器地址
host: 127.0.0.1
# Redis服务器连接端口
port: 6379
# Redis服务器连接密码(默认为空)
password: root
# 连接池最大连接数(使用负值表示没有限制)
pool:
max-active: 8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1
# 连接池中的最大空闲连接
max-idle: 8
# 连接池中的最小空闲连接
min-idle: 0