• The type org.apache.commons.pool.impl.GenericObjectPool$Config cannot be resolved. It is indirectly


    static {
            try {
                JedisPoolConfig config = new JedisPoolConfig();
                config.setMaxActive(MAX_ACTIVE);
                config.setMaxIdle(MAX_IDLE);
                config.setMaxWait(MAX_WAIT);
                config.setTestOnBorrow(TEST_ON_BORROW);
                jedisPool = new JedisPool(config, ADDR, PORT, TIMEOUT, AUTH);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    config.setMaxWait(MAX_WAIT);

    jedisPool = new JedisPool(config, ADDR, PORT, TIMEOUT, AUTH);

    这俩行报错:The type org.apache.commons.pool.impl.GenericObjectPool$Config cannot be resolved. It is indirectly ...

    加上commons-pool.jar 即可

  • 相关阅读:
    学生管理系统简化版
    图形用户界面编程——事件驱动编程
    图形界面编程
    集合框架
    多线程编程
    反射
    相关类
    异常(4.13)
    接口
    锁!代码锁
  • 原文地址:https://www.cnblogs.com/xxdfly/p/5651074.html
Copyright © 2020-2023  润新知