java-ee - redis java客户端不能创建JedisPool
巴扎黑
巴扎黑 2017-04-21 10:56:36
0
3
751
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
巴扎黑
巴扎黑

모든 응답(3)
刘奇

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

PHPzhong

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

洪涛

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

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿