91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JDBC自定義連接池的示例分析

發布時間:2021-06-10 09:52:10 來源:億速云 閱讀:107 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“JDBC自定義連接池的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“JDBC自定義連接池的示例分析”這篇文章吧。

開發中,"獲得連接"和"釋放資源"是非常消耗系統資源的,為了解決此類性能問題可以采用連接池技術來共享連接Connection。

1、概述

用池來管理Connection,這樣可以重復使用Connection.這樣我們就不用創建Connection,用池來管理Connection對象,當使用完Connection對象后,將Connection對象歸還給池,這樣后續還可以從池中獲取Connection對象,可以重新再利用這個連接對象啦。

java為數據庫連接池提供了公共接口:javax.sql.DataSource,各個廠商需要讓自己的連接池實現這個接口。
常見的連接池:DBCP,C3P0

2、自定義連接池

編寫自定義連接池

1、創建連接池并實現接口javax.sql.DataSource,并使用接口中的getConnection()方法

2、提供一個集合,用于存放連接,可以采用LinkedList

3、后面程序如果需要,可以調用實現類getConnection(),并從list中獲取鏈接。為保證當前連接只能提供給一個線程使用,所以我們需要將連接先從連接池中移除

4、當用戶用完連接后,將連接歸還到連接池中

3、自定義連接池采用裝飾者設計模式

public class ConnectionPool implements Connection {

  private Connection connection;
  private LinkedList<Connection> pool;

  public ConnectionPool(Connection connection, LinkedList<Connection> pool){
    this.connection=connection;
    this.pool=pool;
  }

  @Override
  public PreparedStatement prepareStatement(String sql) throws SQLException {
    return connection.prepareStatement(sql);
  }

  @Override
  public void close() throws SQLException {
    pool.add(connection);

  }
  @Override
  public Statement createStatement() throws SQLException {
    return null;
  }



  @Override
  public CallableStatement prepareCall(String sql) throws SQLException {
    return null;
  }

  @Override
  public String nativeSQL(String sql) throws SQLException {
    return null;
  }

  @Override
  public void setAutoCommit(boolean autoCommit) throws SQLException {

  }

  @Override
  public boolean getAutoCommit() throws SQLException {
    return false;
  }

  @Override
  public void commit() throws SQLException {

  }

  @Override
  public void rollback() throws SQLException {

  }



  @Override
  public boolean isClosed() throws SQLException {
    return false;
  }

  @Override
  public DatabaseMetaData getMetaData() throws SQLException {
    return null;
  }

  @Override
  public void setReadOnly(boolean readOnly) throws SQLException {

  }

  @Override
  public boolean isReadOnly() throws SQLException {
    return false;
  }

  @Override
  public void setCatalog(String catalog) throws SQLException {

  }

  @Override
  public String getCatalog() throws SQLException {
    return null;
  }

  @Override
  public void setTransactionIsolation(int level) throws SQLException {

  }

  @Override
  public int getTransactionIsolation() throws SQLException {
    return 0;
  }

  @Override
  public SQLWarning getWarnings() throws SQLException {
    return null;
  }

  @Override
  public void clearWarnings() throws SQLException {

  }

  @Override
  public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException {
    return null;
  }

  @Override
  public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
    return null;
  }

  @Override
  public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
    return null;
  }

  @Override
  public Map<String, Class<?>> getTypeMap() throws SQLException {
    return null;
  }

  @Override
  public void setTypeMap(Map<String, Class<?>> map) throws SQLException {

  }

  @Override
  public void setHoldability(int holdability) throws SQLException {

  }

  @Override
  public int getHoldability() throws SQLException {
    return 0;
  }

  @Override
  public Savepoint setSavepoint() throws SQLException {
    return null;
  }

  @Override
  public Savepoint setSavepoint(String name) throws SQLException {
    return null;
  }

  @Override
  public void rollback(Savepoint savepoint) throws SQLException {

  }

  @Override
  public void releaseSavepoint(Savepoint savepoint) throws SQLException {

  }

  @Override
  public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
    return null;
  }

  @Override
  public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
    return null;
  }

  @Override
  public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
    return null;
  }

  @Override
  public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException {
    return null;
  }

  @Override
  public PreparedStatement prepareStatement(String sql, int[] columnIndexes) throws SQLException {
    return null;
  }

  @Override
  public PreparedStatement prepareStatement(String sql, String[] columnNames) throws SQLException {
    return null;
  }

  @Override
  public Clob createClob() throws SQLException {
    return null;
  }

  @Override
  public Blob createBlob() throws SQLException {
    return null;
  }

  @Override
  public NClob createNClob() throws SQLException {
    return null;
  }

  @Override
  public SQLXML createSQLXML() throws SQLException {
    return null;
  }

  @Override
  public boolean isValid(int timeout) throws SQLException {
    return false;
  }

  @Override
  public void setClientInfo(String name, String value) throws SQLClientInfoException {

  }

  @Override
  public void setClientInfo(Properties properties) throws SQLClientInfoException {

  }

  @Override
  public String getClientInfo(String name) throws SQLException {
    return null;
  }

  @Override
  public Properties getClientInfo() throws SQLException {
    return null;
  }

  @Override
  public Array createArrayOf(String typeName, Object[] elements) throws SQLException {
    return null;
  }

  @Override
  public Struct createStruct(String typeName, Object[] attributes) throws SQLException {
    return null;
  }

  @Override
  public void setSchema(String schema) throws SQLException {

  }

  @Override
  public String getSchema() throws SQLException {
    return null;
  }

  @Override
  public void abort(Executor executor) throws SQLException {

  }

  @Override
  public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException {

  }

  @Override
  public int getNetworkTimeout() throws SQLException {
    return 0;
  }

  @Override
  public <T> T unwrap(Class<T> iface) throws SQLException {
    return null;
  }

  @Override
  public boolean isWrapperFor(Class<?> iface) throws SQLException {
    return false;
  }
}

DataSourcePool

public class DataSourcePool implements DataSource {
  //1.創建1個容器用于存儲Connection對象
  private static LinkedList<Connection> pool = new LinkedList<Connection>();

  //2.創建5個連接放到容器中去
  static{
    for (int i = 0; i < 5; i++) {
      Connection conn = JDBCUtils.getConnection();
      //放入池子中connection對象已經經過改造了
      ConnectionPool connectionPool = new ConnectionPool(conn, pool);
      pool.add(connectionPool);
    }
  }

  /**
   * 重寫獲取連接的方法
   */
  @Override
  public Connection getConnection() throws SQLException {
    Connection conn = null;
    //3.使用前先判斷
    if(pool.size()==0){
      //4.池子里面沒有,我們再創建一些
      for (int i = 0; i < 5; i++) {
        conn = JDBCUtils.getConnection();
        //放入池子中connection對象已經經過改造了
        ConnectionPool connectionPool = new ConnectionPool(conn, pool);
        pool.add(connectionPool);
      }
    }
    //5.從池子里面獲取一個連接對象Connection
    conn = pool.remove(0);
    return conn;
  }


  @Override
  public Connection getConnection(String username, String password) throws SQLException {
    return null;
  }

  @Override
  public <T> T unwrap(Class<T> iface) throws SQLException {
    return null;
  }

  @Override
  public boolean isWrapperFor(Class<?> iface) throws SQLException {
    return false;
  }

  @Override
  public PrintWriter getLogWriter() throws SQLException {
    return null;
  }

  @Override
  public void setLogWriter(PrintWriter out) throws SQLException {

  }

  @Override
  public void setLoginTimeout(int seconds) throws SQLException {

  }

  @Override
  public int getLoginTimeout() throws SQLException {
    return 0;
  }

  @Override
  public Logger getParentLogger() throws SQLFeatureNotSupportedException {
    return null;
  }
}

測試代碼如下

 @Test
  public void test1(){
    Connection conn = null;
    PreparedStatement pstmt = null;
    // 1.創建自定義連接池對象
    DataSource dataSource = new DataSourcePool();
    try {
      // 2.從池子中獲取連接
      conn = dataSource.getConnection();
      String sql = "insert into USER values(?,?)";
      //3.必須在自定義的connection類中重寫prepareStatement(sql)方法
      pstmt = conn.prepareStatement(sql);
      pstmt.setString(1, "李四");
      pstmt.setString(2, "1234");
      int rows = pstmt.executeUpdate();
      System.out.println("rows:"+rows);
    } catch (Exception e) {
      throw new RuntimeException(e);
    } finally {
      JDBCUtils.relase(conn, pstmt, null);
    }
  }

以上是“JDBC自定義連接池的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桂东县| 民丰县| 天门市| 安图县| 齐齐哈尔市| 通榆县| 泽州县| 永登县| 申扎县| 松阳县| 顺义区| 老河口市| 木兰县| 理塘县| 河曲县| 冷水江市| 扬州市| 赤壁市| 宣汉县| 收藏| 东城区| 庆安县| 浮梁县| 漳平市| 湖口县| 信宜市| 梁山县| 吉水县| 吉林市| 山西省| 剑川县| 遂宁市| 霍山县| 新营市| 莒南县| 南投市| 池州市| 镇安县| 右玉县| 靖江市| 田阳县|