JedisPoolConfig的报错 setMaxIdle() setMaxTotal() setMaxWaitMillis() setTestOnBorrow() setTestOnReturn()

JedisPoolConfig的报错
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxIdle(5);
config.setMaxTotal(1000 * 100);
config.setMaxWaitMillis(30);
config.setTestOnBorrow(true);
config.setTestOnReturn(true);
如图爆红:
JedisPoolConfig的报错 setMaxIdle() setMaxTotal() setMaxWaitMillis() setTestOnBorrow() setTestOnReturn()_第1张图片
**解决方案:
在Pom.xml文件 中增加 commons-pool2
JedisPoolConfig的报错 setMaxIdle() setMaxTotal() setMaxWaitMillis() setTestOnBorrow() setTestOnReturn()_第2张图片

即可解决错误!!

你可能感兴趣的:(Storm)