찾다

 >  Q&A  >  본문

java-ee - 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
巴扎黑巴扎黑2829일 전764

모든 응답(3)나는 대답할 것이다

  • 怪我咯

    怪我咯2017-04-21 10:58:36

    예, commons-pool 종속성 패키지를 추가해야 합니다. 그렇지 않으면 코드는 정확하지만 오류가 보고됩니다

    회신하다
    0
  • PHPz

    PHPz2017-04-21 10:58:36

    GenericObjectPool의 기본 패키지 commons-pool을 추가하는 것을 잊어버린 것으로 나타났습니다

    회신하다
    0
  • PHP中文网

    PHP中文网2017-04-21 10:58:36

    redis 클라이언트 업데이트, 더 낮은 버전의 redis 클라이언트는 Java8로 컴파일됩니다.

    회신하다
    0
  • 취소회신하다