cari

Rumah  >  Soal Jawab  >  teks badan

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
巴扎黑巴扎黑2799 hari yang lalu747

membalas semua(3)saya akan balas

  • 怪我咯

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

    Ya, pakej kebergantungan commons-pool mesti ditambah, jika tidak, ralat akan dilaporkan walaupun kod itu betul

    balas
    0
  • PHPz

    PHPz2017-04-21 10:58:36

    Nampaknya saya terlupa untuk menambah pakej asas commons-pool GenericObjectPool

    balas
    0
  • PHP中文网

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

    Kemas kini klien redis; versi bawah klien redis disusun dengan Java8.

    balas
    0
  • Batalbalas