0
ComboPooledDataSource cpds = new ComboPooledDataSource(); 
cpds.setDriverClass( "com.mysql.jdbc.Driver" ); //loads the jdbc driver 

cpds.setJdbcUrl( "jdbc:mysql://localhost:3306/dragon" ); 
cpds.setUser("root"); 
cpds.setPassword("password");
cpds.setMaxPoolSize(50);

我创建了一个包含以下代码的 java 文件来配置 ComboPooledDataSource 对象。现在这段代码是否足以建立与数据库的池连接?

如果没有,我还应该做什么?

另外请告诉我如何在这里实现 JNDI。

请解释一下,因为我是初学者。

4

3 回答 3

2

首先...创建代码以在包含静态方法或变量的类中启动连接,如下所示..

        private static ComboPooledDataSource cpds = new ComboPooledDataSource();
        public static void MakePool()
        {
               try 
               {
                 cpds=new ComboPooledDataSource();
                 cpds.setDriverClass("com.mysql.jdbc.Driver");
                 cpds.setJdbcUrl("jdbc:mysql://localhost:3306/att_db");
                 cpds.setUser("root");
                 cpds.setPassword("dragon");
                 cpds.setMaxPoolSize(MaxPoolSize);
                 cpds.setMinPoolSize(MinPoolSize);
                 cpds.setAcquireIncrement(Accomodation);
             } 
             catch (PropertyVetoException ex) 
             {
                 //handle exception...not important.....
              }

}
public static Connection getConnection()
{
           return cpds.getConnection();
}

一旦你完成创建另一个用于服务器操作的类......

并从池中获取连接...

         try{

               con=DatabasePool.getConnection();
               // DatabasePool is the name of the Class made earlier....
               .
               .
               .
               .  // Server operations as u wanted.....
               .
               .
             }
             catch(SQL EXCEPTION HERE)
             {
                  .....
             }
             finally
             {     
               if(con!=null)
               {
                      con.close();      
               }
             }
于 2012-06-16T15:01:00.100 回答
0

我不熟悉 JNDI,所以我不会解决这个问题(您可能需要一个单独的问题来详细说明您的目标),但我相信您确实正确配置了 ComboPooledDataSource。

您应该能够使用这样的代码测试您的数据源(为简单起见,排除了异常处理):

ArrayList<Object[]> data = new ArrayList<Object[]>();

Connection connection = cpds.getConnection();
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery("select a_column from a_table;");

int columnCount = resultSet.getMetaData().getColumnCount();

while (resultSet.next()) {
    Object[] rowData = new Object[columnCount];

    for (int i = 0; i < columnCount; i++) {
        rowData[i] = resultSet.getObject(i + 1);
    }

    data.add(rowData);
}
于 2012-06-12T15:54:46.067 回答
0

您使用 c3p0 管理 jdbc 连接,不应使用 jdni。如果你想使用 jndi ,你需要在 web 容器中配置连接。像Tomcat

<Context>   
    <Resource name="jdbc/springflow" auth="Container" 
        type="javax.sql.DataSource"
        maxActive="100" maxIdle="30" maxWait="10000" username="root"
        password="" driverClassName="com.mysql.jdbc.Driver"     
        url="jdbc:mysql://localhost:3306/test" />
</Context>

你可以使用 jndi 之类的context.lookup("java:jdbc/springflow")

于 2012-06-12T16:52:12.647 回答