redis java客户端不能创建JedisPool
JedisPoolConfig config = new JedisPoolConfig(); config.setMaxActive(100); config.setMaxIdle(20); config.setMaxWait(1000l); config.setTestOnBorrow(true); JedisPool jedisPool= new JedisPool(config, "localhost");
JedisPool jedisPool= new JedisPool(config, "localhost");
这句Eclipse总是报错,鼠标移到小红叉上提示:
Multiple markers at this line - The type org.apache.commons.pool.impl.GenericObjectPool$Config cannot be resolved. It is indirectly referenced from required .class files - The constructor JedisPool(GenericObjectPool$Config, String) refers to the missing type GenericObjectPool$Config jedis.jar的版本是2.1.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没错,commons-pool这个依赖包必须添加上,否则代码是对的也报错
原来是忘记添加GenericObjectPool的基本包commons-pool
更新redis client;低版本的redis clien在Jave8编译有八阿哥。