/** ####################################数据库的连接池学习################################# * * * #####数据库连接池 >1. 数据库的连接对象创建工作,比较消耗性能。 >2.一开始现在内存中开辟一块空间(集合) , 一开先往池子里面放置 多个连接对象。 后面需要连接的话,直接从池子里面去。不要去自己创建连接了。 使用完毕, 要记得归还连接。确保连接对象能循环利用。 ###自定义数据库连接池 * 代码实现* 出现的问题: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. 创建datasourceComboPooledDataSource 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 {@Testpublic 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>(){@Overridepublic 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, 查询到的单个数据封装成一个mapMapListHandler,查询到的多个数据封装成一个集合 ,集合里面的元素是map。 ColumnListHandler KeyedHandler ScalarHandler##数据连接池* DBCP不使用配置使用配置* C3P0不使用配置使用配置 (必须掌握)* 自定义连接池 装饰者模式##DBUtils> 简化了我们的CRUD , 里面定义了通用的CRUD方法。 queryRunner.update();queryRunner.query* * * * * */