本文主要是介绍Invalid property 'maxActive' of bean class [redis.clients.jedis.JedisPoolConfig]: Bean property,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Invalid property ‘maxWait’ of bean class [redis.clients.jedis.JedisPoolConfig]: Bean property ‘maxWait’ is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
如题报了这样一个错,显然是因为maxActive和maxWait没有找到导致的
说明高版本的jedis中移除了这两个属性
通过查看确实是这样的
新版本的jedis中将maxActive改成了maxTotal , MaxWait改成了MaxWaitMillis
所以poolConfig中向我这样写就可以了
<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig"> <property name="maxIdle" value="${redis.maxIdle}" /><property name="maxTotal" value="${redis.maxTotal}" /><property name="maxWaitMillis" value="${redis.maxWaitMillis}"></property><property name="testOnBorrow" value="${redis.testOnBorrow}" /></bean>
参数自己配,完毕。。。
这篇关于Invalid property 'maxActive' of bean class [redis.clients.jedis.JedisPoolConfig]: Bean property的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!