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>
参数自己配,完毕。。。