【问题标题】:poolDataSource.getConnection() hangs. Tried using ojdbc6 and ojdbc8 jarspoolDataSource.getConnection() 挂起。尝试使用 ojdbc6 和 ojdbc8 jar
【发布时间】:2018-07-28 13:44:30
【问题描述】:

我正在使用 Oracle 11g XE 和 java 8。我正在开发一个桌面应用程序并想要进行连接池。应用程序在执行 pds.getConnection(); 时挂起我尝试使用简单的 JDBC,它工作正常,所以这不是网络/数据库问题。

这是我调用的代码:

/**
 * This returns DB connection from the DB Connection Pool
 * 
 * @return
 * @throws IOException
 * @throws SQLException
 */
public static Connection getConnection() throws IOException, SQLException {
    if (pds == null) {
        initConnectionPool();
    }
    Connection conn = pds.getConnection();
    System.out.println("Available connections after checkout: " + pds.getAvailableConnectionsCount());
    System.out.println("Borrowed connections after checkout: " + pds.getBorrowedConnectionsCount());
    return conn;
}


/**
 * init DB Connection Pool
 * 
 * @return
 * @throws IOException
 * @throws SQLException
 */
private static void initConnectionPool() throws IOException, SQLException {
    Properties configProperties = Utils.getConfig();

    // Get the PoolDataSource for UCP
    PoolDataSource pds = PoolDataSourceFactory.getPoolDataSource();

    // Set the connection factory first before all other properties
    System.out.println("Class name :" + configProperties.getProperty("CONNECTION_FACTORY_CLASS_NAME"));
    pds.setConnectionFactoryClassName(configProperties.getProperty("CONNECTION_FACTORY_CLASS_NAME"));

    System.out.println("DB URL ==" + configProperties.getProperty("DB_URL"));
    pds.setURL(configProperties.getProperty("DB_URL"));

    System.out.println("DB User ==" + configProperties.getProperty("DB_USER"));
    pds.setUser(configProperties.getProperty("DB_USER"));

    System.out.println("Password==" + configProperties.getProperty("DB_PSWD"));
    pds.setPassword(configProperties.getProperty("DB_PSWD"));

    pds.setConnectionPoolName("JDBC_UCP_POOL");

    // Default is 0. Set the initial number of connections to be created
    // when UCP is started.
    pds.setInitialPoolSize(Integer.parseInt(configProperties.getProperty("INITIAL_POOL_SIZE")));

    // Default is 0. Set the minimum number of connections
    // that is maintained by UCP at runtime.
    pds.setMinPoolSize(Integer.parseInt(configProperties.getProperty("MIN_POOL_SIZE")));

    // Default is Integer.MAX_VALUE (2147483647). Set the maximum number of
    // connections allowed on the connection pool.
    pds.setMaxPoolSize(Integer.parseInt(configProperties.getProperty("MAX_POOL_SIZE")));
}



/**
 * Loads the config file and return instance of Properties
 * 
 * @return Proterties
 * @throws IOException
 */

public static Properties getConfig() throws IOException {

    if (configProps != null)
        return configProps;
    configProps = new Properties();
    FileInputStream in;
    in = new FileInputStream("bin/resources/config.properties");
    configProps.load(in);
    in.close();
    return configProps;
}

使用的属性有:

 DB_URL=jdbc:oracle:thin:@//localhost:1521/XE

 INITIAL_POOL_SIZE=5

 MIN_POOL_SIZE=5

 MAX_POOL_SIZE=10

 CONNECTION_FACTORY_CLASS_NAME=oracle.jdbc.pool.OracleDataSource

【问题讨论】:

    标签: java jdbc oracle11g connection-pooling


    【解决方案1】:

    我发现了错误。在 initialize() 中,我声明了一个局部变量 pds。我删除了它并让类变量初始化,代码开始工作。我很惊讶为什么在这种情况下我没有收到 NullPointerException。这可以节省很多时间。

    【讨论】:

      【解决方案2】:

      您没有初始化 pds 类变量。当您拨打getConnection() 时,它始终是null

      为了确保在您可以使用静态初始化块时调用初始化池的方法。

      static {
        initConnectionPool();
      }
      

      【讨论】:

      • 我已将 pds 声明为类级别的静态变量。如果发现 pds 为空,我将调用 initConnectionPool() ..
      • 我没有问你声明了一个类变量,因为否则它不会编译。您没有初始化该变量。变量应该在上下文启动后初始化一次,并且只初始化一次。如果变量是静态的,您可以在加载类时对其进行初始化。
      猜你喜欢
      • 2021-01-02
      • 2011-03-13
      • 2013-07-17
      • 1970-01-01
      • 1970-01-01
      • 2013-03-18
      • 2013-01-10
      • 1970-01-01
      • 2018-04-11
      相关资源
      最近更新 更多