连接工厂,实现了DataSource接口
package skydev.modules.data;
import java.sql.*;
import javax.sql.DataSource;
import java.io.PrintWriter;
public class ConnectionFactory implements DataSource {
  private String userName;
  private String password;
  private String driverName;
  private String url;
  private java.sql.Connection connection;
  /**
   * 根据设置的连接参数创建一个新的连接实例
   * @return
   */
  private Connection getNewConnection() {
    try {
      this.connection.close(); //试图关闭连接
    }
    finally {
      this.connection = null; //释放连接
      try {
        Class.forName(this.driverName); //加载驱动程序
        //DriverManager.registerDriver(driver);
        try {
          this.connection = DriverManager.getConnection(this.url, this.userName,
              this.password);
        }
        catch (SQLException e) {
          throw e;
        }
      }
      finally {
        return this.connection; //返回新建立的连接
      }
    }
  }
  public String getUserName() {
    return userName;
  }
  public void setUserName(String userName) {
    this.userName = userName;
  }
  public String getPassword() {
    return password;
  }
  public void setPassword(String password) {
    this.password = password;
  }
  public String getDriverName() {
    return driverName;
  }
  public void setDriverName(String driverName) {
    this.driverName = driverName;
  }
  public String getUrl() {
    return url;
  }
  public void setUrl(String url) {
    this.url = url;
  }
  public java.sql.Connection getConnection() {
    if (connection != null) {
      try {
        if (connection.isClosed()) {
          connection = null;
          getNewConnection();
        }
      }
      catch (SQLException ex) {
      }
    }
    if (connection == null) { //没有设置连接则创建一个连接
      getNewConnection();
    }
    return connection;
  }
  public Connection getConnection(String userName, String password) throws
      SQLException {
    this.setUserName(userName);
    this.setPassword(password);
    return getConnection();
  }
  public PrintWriter getLogWriter() {
    return null;
  }
  public void setLogWriter(PrintWriter printWriter) {
  }
  public void setLoginTimeout(int int0) {
  }
  public int getLoginTimeout() {
    return 0;
  }
}
实现连接SQLServer的连接工厂,这里因为我们的项目使用SQLServer2000所以只实现了
SqlServerConnectionFactory。
package skydev.modules.data;
public final class SqlServerConnectionFactory extends ConnectionFactory {
  private final String dbDriver ="com.microsoft.jdbc.sqlserver.SQLServerDriver";
  private String host;//主机
  private int port;//端口
  private String databaseName;//Sql数据库名称
  public SqlServerConnectionFactory() {
    super.setDriverName(dbDriver);
  }
  /**
   *
   * @param host 数据库所在的主机名:如"localhost"
   * @param port SQL服务器运行的端口号,如果使用缺省值 1433,传入一个负数即可
   * @param databaseName 数据库名称
   * @param userName 用户名
   * @param password 口令
   */
  public SqlServerConnectionFactory(String host,
                                    int port,
                                    String databaseName,
                                    String userName,
                                    String password) {
    this.setHost(host);
    this.setPort(port);
    this.setDatabaseName(databaseName);
    this.setUserName(userName);
    this.setPassword(password);
    init();
  }
  private void init() {
    super.setDriverName(dbDriver);
    super.setUrl("jdbc:microsoft:sqlserver://" + host.trim() + ":" +
                 new Integer(port).toString() + ";DatabaseName=" +
                 databaseName.trim());
    //super.setUrl("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=demo");
  }
  public void setHost(String host) {
    //处理主机名称
    if ( (host == null) || (host.equals("")) || (host.equals(".")) ||
        (host.equals("local"))) {
      host = "localhost";
    }
    int index = host.indexOf("//", 0);
    if (index == 0) {
      host = host.substring(2); //去掉前面的"//"
    }
    index = host.indexOf("//", 0);
    if (index >= 0) {
      try {
        throw new Exception("SQL Server主机名参数错误!");
      }
      catch (Exception ex) {
      }
    }
    this.host = host;
  }
  public void setPort(int port) {
    /**
     * 缺省端口1433
     */
    if (port < 0) {
      port = 1433;
    }
    this.port = port;
  }
  public void setDatabaseName(String databaseName) {
    this.databaseName = databaseName;
  }
}
使用"sun.jdbc.odbc.JdbcOdbcDriver"连接数据库的连接工厂
package skydev.modules.data;
public class JdbcOdbcConnectionFactory extends ConnectionFactory {
  private final static String driveName = "sun.jdbc.odbc.JdbcOdbcDriver";
  private String odbcName;
  public JdbcOdbcConnectionFactory() {
    super.setDriverName(driveName);
  }
  /**
   *使用指定的Odbc数据源连接数据库服务器
   * @param odbcName
   */
  public JdbcOdbcConnectionFactory(String odbcName) {
    super.setDriverName(driveName);

解决方案 »

  1.   

    setOdbcName(odbcName);
      }
      public void setOdbcName(String odbcName) {
        this.odbcName = odbcName;
        this.setUrl("jdbc:odbc:" + odbcName);
      }
    }
    数据基本操作类,使用连接工厂连接数据库。
    package skydev.modules.data;
    import java.sql.*;
    import java.sql.PreparedStatement;
    import javax.sql.DataSource;
    public abstract class DatabaseObject {
      protected Connection connection = null;
      protected ResultSet resultSet = null;
      protected ResultSetMetaData resultSetMetaData = null;
      private ConnectionFactory connectionFactory = null;
      private java.sql.Statement statement=null;
      private javax.sql.DataSource dataSource;//=new Statement();
      public DatabaseObject(){
        dataSource=null;
        connection=null;
      }
      public DatabaseObject(ConnectionFactory connectionFactory) {
        this.setConnectionFactory(connectionFactory);
        this.dataSource=connectionFactory;//ConnectionFactory实现了DataSource接口
      }
      /**
       * 执行查询
       * @param sql 要执行的Sql语句
       * @return 返回查询的结果集 ,查询失败返回null
       */
      public ResultSet getResultSet(String sql) {
        try {
          this.resultSet = statement.executeQuery(sql); //保留内部指针
        }
        catch (SQLException e) {
          e.printStackTrace();
          this.resultSet = null;
        }
        finally {
          return this.resultSet;
        }
      }
      /**
       * 获取外部指定ResltSet的ResultSetMetaData数据
       * @param resultSet 要获取的ResultSet
       * @return 失败返回null
       */
      public ResultSetMetaData getResultSetMetaData(ResultSet resultSet) {
        ResultSetMetaData resultSetMetaData = null;
        try {
          resultSetMetaData = resultSet.getMetaData();
        }
        catch (SQLException e) {
          e.printStackTrace();
          resultSetMetaData = null;
        }
        finally {
          return resultSetMetaData;
        }
      }
      /**
       * 获取最近一次设置或者返回的ResultSet的ResultMetaData数据,
       * 比方说调用了:getResultSet(sql)方法,然后调用getResultSetMetaData方法
       * 可以获得相应的ResultSetMetaData数据。
       * @return
       */
      public ResultSetMetaData getResultSetMetaData() {
        return this.getResultSetMetaData(this.resultSet);
      }
      /**
       * 执行存储过程
       * @param spName 存储过程名称
       * @return
       */
      public ResultSet Execute(String spName) {
        //对此数据库执行一个 SQL 查询
        ResultSet resultSet = null;
        try {
          // PreparedStatement stmt = (PreparedStatement) connection.createStatement();
          resultSet = statement.executeQuery(spName);
        }
        catch (Exception e) {
          System.out.println("execute error" + e.getMessage());
        }
        return resultSet;
      }
      /**
       * 设置数据库连接工厂,对此类的所有操作之前,必须调用该方法,
       * 设置数据库连接工厂。
       * @param connectionFactory 数据库连接工厂ConnectionFactory 类对象以及
       * 派生类对象。
       */
      public void setConnectionFactory(ConnectionFactory connectionFactory) {
        this.connectionFactory = connectionFactory;
        connection = connectionFactory.getConnection();
        try {
          statement = connection.createStatement();
        }
        catch (SQLException ex) {
          System.err.println(ex);
        }
      }
      public Connection getConnection() {
        return connection;
      }
      public java.sql.Statement getStatement() {
        return statement;
      }
      public javax.sql.DataSource getDataSource() {
        return dataSource;
      }
    }具体项目的数据库访问基类
    package skydev.modules.data;
    public class DbObject extends DatabaseObject {
     // private final static String driveName = "sun.jdbc.obdc.JdbcOdbcDriver";
      public DbObject() {
        super(new SqlServerConnectionFactory("localhost", 1433, "TheSchool", "sa",""));
      }
      public DbObject(ConnectionFactory connectionFactory) {
        super(connectionFactory);
      }
    }
    在项目中的数据库层中的数据库访问类都从DatabaseObject类派生,这样只需要在一个地方设置数据连接
    ,其他地方都不需要涉及数据库访问的具体连接代码。
    如:User类专门负责Users组的权限控制等,只需要简单的代码就可以连接并访问数据库了。这里具体实
    现与此文章无关,只举一两个模块做例子。
    public class User extends DbObject {
      public User() {
        //子类也可以覆盖基类的访问方式,在单机调式时有用。
        // super(new SqlServerConnectionFactory("localhost", 1433, "TheSchool", "sa",""));
        super();//调用基类的数据库访问代码。
      }
    /*
       在做信息系统时为了提高客维护性,我们一般使用存储过程返回和修改数据,在数据库层代码不使用
    Select语句直接检索数据,做到数据库层代码的最大的灵活性和可维护性。一旦发现需要修改数据库中的
    代码,只需要修改村年初过程即可以。
        下面介绍Java使用SqlServer StoreProcedure的方法。
        存储过程的参数使用“?”代替,下面的代码有一定的代表性,存储过程有输入参数,输出参数。
        存储过程的基本功能为:检测userID和encPassword是否和数据库存储的一致,返回UserID,如果不一
    致返回-1。
    */
    //测试数据库中存储的已经加密的密码和用户传入的加密的密码是否一致。
    public boolean testPassword(int userID, byte[] encPassword) {
        Connection con = this.getConnection();
        CallableStatement cs = null;
        try {
          cs = con.prepareCall("{?=call sp_Accounts_TestPassword(?,?)}");
          cs.setInt(2, userID);
          cs.setBytes(3, encPassword);
          cs.registerOutParameter(1, Types.INTEGER); //@UserID
          cs.execute();
          if (cs.getInt(1) == 1) { //密码合格
            return true;
          }
          else {
            return false;
          }
        }
        catch (SQLException ex) {
          return false;
        }
        catch (Exception e) {
          return false;
        }
     }
    }
       以上只是我在学习和工作中的一点体会,写出来的目的使为了和大家交流,错误之处希望大家提出宝
    贵的意见,以便把该模块的功能做得更完善一点。
    欢迎大家提出宝贵的意见。
      

  2.   

    建议你使用久经考验的poolman2.0.4
    效率高且稳定。
      

  3.   

    连接池
    package com.db;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import java.util.Date;
    /* 管理类DBConnectionManager支持对一个或多个由属性文件定义的数据库连接 * 池的访问.客户程序可以调用getInstance()方法访问本类的唯一实例. */
    public class DBConnectionManager {
    static private DBConnectionManager instance; // 唯一实例
    static private int clients;
    private Vector drivers = new Vector();
    private PrintWriter log;
    private Hashtable pools = new Hashtable();
    /**
     * 返回唯一实例.如果是第一次调用此方法,则创建实例
    * @return DBConnectionManager 唯一实例
     */
    static synchronized public DBConnectionManager getInstance() {
    if (instance == null) {
    instance = new DBConnectionManager();
     }
    clients++;
    return instance;
    }
    /**
    * 建构函数私有以防止其它对象创建本类实例
    */
     private DBConnectionManager() {
    init();
    }
    /**
     * 将连接对象返回给由名字指定的连接池
     * @param name 在属性文件中定义的连接池名字
     * @param con 连接对象
    */ public void freeConnection(String name, Connection con) {
     DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
    pool.freeConnection(con);
    }
    }
    /**
     * 获得一个可用的(空闲的)连接.如果没有可用连接,且已有连接数小于最大连接数
    * 限制,则创建并返回新连接
    * @param name 在属性文件中定义的连接池名字
     * @return Connection 可用连接或null
     */
    public Connection getConnection(String name) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
    return pool.getConnection();
     }
     return null;
     }/**
     * 获得一个可用连接.若没有可用连接,且已有连接数小于最大连接数限制,
     * 则创建并返回新连接.否则,在指定的时间内等待其它线程释放连接.
    * @param name 连接池名字
     * @param time 以毫秒计的等待时间
     * @return Connection 可用连接或null
     */
    public Connection getConnection(String name, long time) {
     DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
     return pool.getConnection(time);
     }
     return null;
     }
     /**
    * 关闭所有连接,撤销驱动程序的注册
     */
     public synchronized void release() {
     // 等待直到最后一个客户程序调用
    if (--clients != 0) {
     return;
    }
     Enumeration allPools = pools.elements();
     while (allPools.hasMoreElements()) {
     DBConnectionPool pool = (DBConnectionPool) allPools.nextElement();
     pool.release();
     }
     Enumeration allDrivers = drivers.elements();
     while (allDrivers.hasMoreElements()) {
     Driver driver = (Driver) allDrivers.nextElement();
     try {
     DriverManager.deregisterDriver(driver);
     log("撤销JDBC驱动程序 " + driver.getClass().getName()+"的注册");
     }
     catch (SQLException e) {
    log(e, "无法撤销下列JDBC驱动程序的注册: " + driver.getClass().getName());
     }
     }
     } /**
     * 根据指定属性创建连接池实例.
    * @param props 连接池属性
     */
     private void createPools(Properties props) {
     Enumeration propNames = props.propertyNames();
     while (propNames.hasMoreElements()) {
     String name = (String) propNames.nextElement();
     if (name.endsWith(".url")) {
    String poolName = name.substring(0, name.lastIndexOf("."));
     String url = props.getProperty(poolName + ".url");
     if (url == null) {
     log("没有为连接池" + poolName + "指定URL");
     continue;
     }
     String user = props.getProperty(poolName + ".user");
     String password = props.getProperty(poolName + ".password");
    String maxconn = props.getProperty(poolName + ".maxconn", "0");
    int max;
    try {
     max = Integer.valueOf(maxconn).intValue();
    }
     catch (NumberFormatException e) {
    log("错误的最大连接数限制: " + maxconn + " .连接池: " + poolName);
     max = 0;
     }
    DBConnectionPool pool =
     new DBConnectionPool(poolName, url, user, password, max);
     pools.put(poolName, pool);
     log("成功创建连接池" + poolName);
     }
     }
    }
     /**
    145 * 读取属性完成初始化
    146 */
    private void init() {
     InputStream is = getClass().getResourceAsStream("/db.properties");
     Properties dbProps = new Properties();
     try {
     dbProps.load(is);
     }
    catch (Exception e) {
     System.err.println("不能读取属性文件. " +
     "请确保db.properties在CLASSPATH指定的路径中");
    return;
    }
    String logFile = dbProps.getProperty("logfile", "DBConnectionManager.log");
     try {
     log = new PrintWriter(new FileWriter(logFile, true), true);
     }
     catch (IOException e) {
     System.err.println("无法打开日志文件: " + logFile);
     log = new PrintWriter(System.err);
     }
     loadDrivers(dbProps);
     createPools(dbProps);
     }
     /**
    171 * 装载和注册所有JDBC驱动程序
    172 *
    173 * @param props 属性
    174 */
      

  4.   

    private void loadDrivers(Properties props) {
     String driverClasses = props.getProperty("drivers");
    StringTokenizer st = new StringTokenizer(driverClasses);
     while (st.hasMoreElements()) {
     String driverClassName = st.nextToken().trim();
    try {
     Driver driver = (Driver)
     Class.forName(driverClassName).newInstance();
     DriverManager.registerDriver(driver);
    drivers.addElement(driver);
     log("成功注册JDBC驱动程序" + driverClassName);
     }
     catch (Exception e) {
     log("无法注册JDBC驱动程序: " +
     driverClassName + ", 错误: " + e);
     }
     }
     }
     /**
    195 * 将文本信息写入日志文件
    196 */
     private void log(String msg) {
     log.println(new Date() + ": " + msg);
     }
     /**
    202 * 将文本信息与异常写入日志文件
    203 */
     private void log(Throwable e, String msg) {
     log.println(new Date() + ": " + msg);
     e.printStackTrace(log);
     }
     class DBConnectionPool {
     private int checkedOut;
    private Vector freeConnections = new Vector();
     private int maxConn;
     private String name;
    private String password;
     private String URL;
     private String user;
     /**
        223 * 创建新的连接池
        224 *
        225 * @param name 连接池名字
        226 * @param URL 数据库的JDBC URL
        227 * @param user 数据库帐号,或 null
        228 * @param password 密码,或 null
        229 * @param maxConn 此连接池允许建立的最大连接数
        230 */
     public DBConnectionPool(String name, String URL, String user, String password,
     int maxConn) {
      this.name = name;
     this.URL = URL;
     this.user = user;
     this.password = password;
     this.maxConn = maxConn;
     }
      /**
        241 * 将不再使用的连接返回给连接池
        242 *
        243 * @param con 客户程序释放的连接
        244 */
     public synchronized void freeConnection(Connection con) {
     // 将指定连接加入到向量末尾
     freeConnections.addElement(con);
    checkedOut--;
     notifyAll();
     }
     /**
        253 * 从连接池获得一个可用连接.如没有空闲的连接且当前连接数小于最大连接
        254 * 数限制,则创建新连接.如原来登记为可用的连接不再有效,则从向量删除之,
        255 * 然后递归调用自己以尝试新的可用连接.
        256 */
     public synchronized Connection getConnection() {
     Connection con = null;
     if (freeConnections.size() > 0) {
     // 获取向量中第一个可用连接
     con = (Connection) freeConnections.firstElement();
     freeConnections.removeElementAt(0);
     try {
     if (con.isClosed()) {
     log("从连接池" + name+"删除一个无效连接");
     // 递归调用自己,尝试再次获取可用连接
     con = getConnection();
     }
     }
     catch (SQLException e) {
     log("从连接池" + name+"删除一个无效连接");
     // 递归调用自己,尝试再次获取可用连接
    con = getConnection();
    }
     }
     else if (maxConn == 0 || checkedOut < maxConn) {
     con = newConnection();
     }
     if (con != null) {
     checkedOut++;
     }
     return con;
    }
    public void BeginTrans(Connection con)
    {
        try
        {
         con.setAutoCommit(false);
        }catch(SQLException e){e.printStackTrace();}
    }
    public void commit(Connection con)
    {
        try
        {
         con.commit();
         con.setAutoCommit(true);
        }catch(SQLException e)
        {
            e.printStackTrace();
        }
    }
     public void rollback(Connection con)
     {
         try
         {
             con.rollback();
             con.setAutoCommit(true);
         }catch(SQLException e){e.printStackTrace();}
     }
     /**
        286 * 从连接池获取可用连接.可以指定客户程序能够等待的最长时间
        287 * 参见前一个getConnection()方法.
        288 *
        290 */
     public synchronized Connection getConnection(long timeout) {
     long startTime = new Date().getTime();
     Connection con;
      while ((con = getConnection()) == null) {
     try {
     wait(timeout);
     }
     catch (InterruptedException e) {}
      if ((new Date().getTime() - startTime) >= timeout) {
     // wait()返回的原因是超时
     return null;
     }
     }
     return con;
     }
     /**
        308 * 关闭所有连接
        309 */
     public synchronized void release() {
    Enumeration allConnections = freeConnections.elements();
     while (allConnections.hasMoreElements()) {
    Connection con = (Connection) allConnections.nextElement();
     try {
     con.close();
     log("关闭连接池" + name+"中的一个连接");
     }
     catch (SQLException e) {
     log(e, "无法关闭连接池" + name+"中的连接");
     }
     }
     freeConnections.removeAllElements();
     }
     /**
        326 * 创建新的连接
        327 */
     private Connection newConnection() {
      Connection con = null;
     try {
     if (user == null) {
       con = DriverManager.getConnection(URL);
     }
     else {
     con = DriverManager.getConnection(URL, user, password);
     }
      log("连接池" + name+"创建一个新的连接");
      }
     catch (SQLException e) {
     log(e, "无法创建下列URL的连接: " + URL);
     return null;
       }
     return con;
     }
     }
    }
    db.properties文文件
    drivers=com.microsoft.jdbc.sqlserver.SQLServerDriver
    logfile=D:\\log.txt 
    idb.url=jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=test 
    idb.maxconn=100
    idb.user=sa
    idb.password=sa
    三、引用
    DBConnectionManager connMgr=DBConnectionManager.getInstrance();
    Connection conn=connMgr.getConnectiong("idb");
    Statement stmt=conn.createStatement();
    String sql="select * from test";
    ResultSet rs=stmt.executeQuery(sql);
    while(rs.next())
    {
      out.println(rs.getString(1)):
    }rs.close();stmt.close();
    connMgr.release();
    connMgr.freeConnection("idb",conn);
      

  5.   


    duanyuxy123(这几年)
    都成代碼倉庫了