首页 > 其他 > 详细

redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

时间:2017-08-25 21:35:21      阅读:3295      评论:0      收藏:0      [点我收藏+]

  今天在链接redis时,遇到问题:

redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

   Could not get a resource from the pool。

  

  redis的配置是:

  

    <bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
        <property name="maxTotal" value="150" />
        <property name="maxIdle" value="30" />
        <property name="minIdle" value="10" />
        <property name="maxWaitMillis" value="30000" />
        <property name="testOnBorrow" value="true" />
        <property name="testOnReturn" value="true" />
        <property name="testWhileIdle" value="true" />
    </bean>

  最后,把 

testOnBorrow的值改为 FALSE就可以了。

 

redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

原文:http://www.cnblogs.com/parkdifferent/p/7429660.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!