java数据库连接池例子,非常经典. 这个例子是根据POSTGRESQL数据库写的, 请用的时候根据实际的数据库调整。 调用方法如下: ① ConnectionPool connPool = new ConnectionPool("org.postgresql.Driver" ,"jdbc:postgresql://dbURI:5432/DBName" ,"postgre","postgre"); ② connPool .createPool(); Connection conn = connPool .getConnection();