/* * ####################################數據庫的鏈接池學習################################# * * * #####數據庫鏈接池 >1. 數據庫的鏈接對象建立工做,比較消耗性能。 >2.一開始如今內存中開闢一塊空間(集合) , 一開先往池子裏面放置 多個鏈接對象。 後面須要鏈接的話,直接從池子裏面去。不要去本身建立鏈接了。 使用完畢, 要記得歸還鏈接。確保鏈接對象能循環利用。 ![icon](img/img11.png) ###自定義數據庫鏈接池 * 代碼實現 * 出現的問題: 1. 須要額外記住 addBack方法 2. 單例。 3. 沒法面向接口編程。 UserDao dao = new UserDaoImpl(); dao.insert(); DataSource dataSource = new MyDataSource(); 由於接口裏面沒有定義addBack方法。 4. 怎麼解決? 以addBack 爲切入點。 ###解決自定義數據庫鏈接池出現的問題。 > 因爲多了一個addBack 方法,因此使用這個鏈接池的地方,須要額外記住這個方法,而且還不能面向接口編程。 > 咱們打算修改接口中的那個close方法。 原來的Connection對象的close方法,是真的關閉鏈接。 > 打算修改這個close方法,之後在調用close, 並非真的關閉,而是歸還鏈接對象。 * * * ####開源鏈接池 #### DBCP 1. 導入jar文件 2. 不使用配置文件 * public void testDBCP01(){ Connection conn = null; PreparedStatement ps = null; try { //1. 構建數據源對象 BasicDataSource dataSource = new BasicDataSource(); //連的是什麼類型的數據庫, 訪問的是哪一個數據庫 , 用戶名, 密碼。。 //jdbc:mysql://localhost/bank 主協議:子協議 ://本地/數據庫 dataSource.setDriverClassName("com.mysql.jdbc.Driver"); dataSource.setUrl("jdbc:mysql://localhost/bank"); dataSource.setUsername("root"); dataSource.setPassword("root"); //2. 獲得鏈接對象 conn = dataSource.getConnection(); String sql = "insert into account values(null , ? , ?)"; ps = conn.prepareStatement(sql); ps.setString(1, "admin"); ps.setInt(2, 1000); ps.executeUpdate(); } catch (SQLException e) { e.printStackTrace(); }finally { JDBCUtil.release(conn, ps); } } * * * ####使用配置文件方式: Connection conn = null; PreparedStatement ps = null; try { BasicDataSourceFactory factory = new BasicDataSourceFactory(); Properties properties = new Properties(); InputStream is = new FileInputStream("src//dbcpconfig.properties"); properties.load(is); DataSource dataSource = factory.createDataSource(properties); //2. 獲得鏈接對象 conn = dataSource.getConnection(); String sql = "insert into account values(null , ? , ?)"; ps = conn.prepareStatement(sql); ps.setString(1, "liangchaowei"); ps.setInt(2, 100); ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); }finally { JDBCUtil.release(conn, ps); } * *###################配置文件模板################################################## *#鏈接設置 driverClassName=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/bank username=root password=root #<!-- 初始化鏈接 --> initialSize=10 #最大鏈接數量 maxActive=50 #<!-- 最大空閒鏈接 --> maxIdle=20 #<!-- 最小空閒鏈接 --> minIdle=5 #<!-- 超時等待時間以毫秒爲單位 6000毫秒/1000等於60秒 --> maxWait=60000 #JDBC驅動創建鏈接時附帶的鏈接屬性屬性的格式必須爲這樣:[屬性名=property;] #注意:"user" 與 "password" 兩個屬性會被明確地傳遞,所以這裏不須要包含他們。 connectionProperties=useUnicode=true;characterEncoding=gbk #指定由鏈接池所建立的鏈接的自動提交(auto-commit)狀態。 defaultAutoCommit=true #driver default 指定由鏈接池所建立的鏈接的事務級別(TransactionIsolation)。 #可用值爲下列之一:(詳情可見javadoc。)NONE,READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ, SERIALIZABLE defaultTransactionIsolation=READ_UNCOMMITTED ######################################################################################## * * ####################C3P0知識點############################################################ ######C3P0 > 拷貝jar文件 到 lib目錄 ###不使用配置文件方式 Connection conn = null; PreparedStatement ps = null; try { //1. 建立datasource ComboPooledDataSource dataSource = new ComboPooledDataSource(); //2. 設置鏈接數據的信息 dataSource.setDriverClass("com.mysql.jdbc.Driver"); //忘記了---> 去之前的代碼 ---> jdbc的文檔 dataSource.setJdbcUrl("jdbc:mysql://localhost/bank"); dataSource.setUser("root"); dataSource.setPassword("root"); //2. 獲得鏈接對象 conn = dataSource.getConnection(); String sql = "insert into account values(null , ? , ?)"; ps = conn.prepareStatement(sql); ps.setString(1, "admi234n"); ps.setInt(2, 103200); ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); }finally { JDBCUtil.release(conn, ps); } ######使用配置文件方式 #####c3p0-config配置文件,xml文件。名字不能夠改變 <?xml version="1.0" encoding="UTF-8"?> <c3p0-config> <!-- default-config 默認的配置, --> <default-config> <property name="driverClass">com.mysql.jdbc.Driver</property> <property name="jdbcUrl">jdbc:mysql://localhost/bank</property> <property name="user">root</property> <property name="password">root</property> <property name="initialPoolSize">10</property> <property name="maxIdleTime">30</property> <property name="maxPoolSize">100</property> <property name="minPoolSize">10</property> <property name="maxStatements">200</property> </default-config> <!-- This app is massive! --> <named-config name="oracle"> <property name="acquireIncrement">50</property> <property name="initialPoolSize">100</property> <property name="minPoolSize">50</property> <property name="maxPoolSize">1000</property> <!-- intergalactoApp adopts a different approach to configuring statement caching --> <property name="maxStatements">0</property> <property name="maxStatementsPerConnection">5</property> <!-- he's important, but there's only one of him --> <user-overrides user="master-of-the-universe"> <property name="acquireIncrement">1</property> <property name="initialPoolSize">1</property> <property name="minPoolSize">1</property> <property name="maxPoolSize">5</property> <property name="maxStatementsPerConnection">50</property> </user-overrides> </named-config> </c3p0-config> #####代碼部分 //默認會找 xml 中的 default-config 分支。 public class C3P0Demo02 { @Test public void testC3P0(){ Connection conn = null; PreparedStatement ps = null; try { //就new了一個對象。在這種狀況下c3p0會直接找到c3p0-config.xml文件 //而且在c3p0-config.xml文件中默認的找到 default-config配置 ComboPooledDataSource dataSource = new ComboPooledDataSource(); //ComboPooledDataSource dataSource = new ComboPooledDataSource("oracle"); //找到c3p0-config.xml文件中默認的找到named-config name="oracle"的配置 //2. 獲得鏈接對象 conn = dataSource.getConnection(); String sql = "insert into account values(null , ? , ?)"; ps = conn.prepareStatement(sql); ps.setString(1, "wangwu2"); ps.setInt(2, 2600); ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); }finally { JDBCUtil.release(conn, ps); } } } ########################################################################################### * ###########DBUtils ###增刪改 //dbutils 只是幫咱們簡化了CRUD 的代碼, 可是鏈接的建立以及獲取工做。 不在他的考慮範圍 QueryRunner主要是這個類 QueryRunner queryRunner = new QueryRunner(new ComboPooledDataSource()); //增長 //queryRunner.update("insert into account values (null , ? , ? )", "aa" ,1000); //刪除 //queryRunner.update("delete from account where id = ?", 5); //更新 //queryRunner.update("update account set money = ? where id = ?", 10000000 , 6); * * * * * * ######查詢 1. 直接new接口的匿名實現類 QueryRunner queryRunner = new QueryRunner(new ComboPooledDataSource()); Account account = queryRunner.query("select * from account where id = ?", new ResultSetHandler<Account>(){ @Override public Account handle(ResultSet rs) throws SQLException { Account account = new Account(); while(rs.next()){ String name = rs.getString("name"); int money = rs.getInt("money"); account.setName(name); account.setMoney(money); } return account; } }, 6); System.out.println(account.toString()); 2. 直接使用框架已經寫好的實現類。 * 查詢單個對象 QueryRunner queryRunner = new QueryRunner(new ComboPooledDataSource()); //查詢單個對象 Account account = queryRunner.query("select * from account where id = ?", new BeanHandler<Account>(Account.class), 8); * 查詢多個對象 QueryRunner queryRunner = new QueryRunner(new ComboPooledDataSource()); List<Account> list = queryRunner.query("select * from account ", new BeanListHandler<Account>(Account.class)); ######ResultSetHandler 經常使用的實現類(重點) 如下兩個是使用頻率最高的 BeanHandler, 查詢到的單個數據封裝成一個對象 BeanListHandler, 查詢到的多個數據封裝 成一個List<對象> ------------------------------------------ ArrayHandler, 查詢到的單個數據封裝成一個數組 ArrayListHandler, 查詢到的多個數據封裝成一個集合 ,集合裏面的元素是數組。 MapHandler, 查詢到的單個數據封裝成一個map MapListHandler,查詢到的多個數據封裝成一個集合 ,集合裏面的元素是map。 ColumnListHandler KeyedHandler ScalarHandler ##數據鏈接池 * DBCP 不使用配置 使用配置 * C3P0 不使用配置 使用配置 (必須掌握) * 自定義鏈接池 裝飾者模式 ##DBUtils > 簡化了咱們的CRUD , 裏面定義了通用的CRUD方法。 queryRunner.update(); queryRunner.query * * * * * */