5. Druid:数据库连接池实现技术,由阿里巴巴提供的
1. 步骤:
1. 导入jar包 druid-1.0.9.jar
2. 定义配置文件:
* 是properties形式的
* 可以叫任意名称,可以放在任意目录下
3. 加载配置文件。Properties
4. 获取数据库连接池对象:通过工厂来来获取 DruidDataSourceFactory
5. 获取连接:getConnection
* 代码:
//3.加载配置文件
Properties pro = new Properties();
InputStream is = DruidDemo.class.getClassLoader().getResourceAsStream("druid.properties");
pro.load(is);
//4.获取连接池对象
DataSource ds = DruidDataSourceFactory.createDataSource(pro);
//5.获取连接
Connection conn = ds.getConnection();
2. 定义工具类
1. 定义一个类 JDBCUtils
2. 提供静态代码块加载配置文件,初始化连接池对象
3. 提供方法
1. 获取连接方法:通过数据库连接池获取连接
2. 释放资源
3. 获取连接池的方法
public class JDBCUtils { // 1.定义成员变量DataSource private static DataSource ds; static { try { // 1.加载配置文件 Properties pro = new Properties(); pro.load(JDBCUtils.class.getClassLoader().getResourceAsStream("druid.properties")); // 2.获取DataSource ds = DruidDataSourceFactory.createDataSource(pro); } catch (IOException e) { throw new RuntimeException(e); } catch (Exception e) { throw new RuntimeException(e); } } /** * 获取连接 */ public static Connection getConnection() throws SQLException { return ds.getConnection(); } /** * 释放资源 */ public static void close(Statement stmt, Connection conn){ if (stmt != null){ try { stmt.close(); } catch (SQLException e) { throw new RuntimeException(e); } } if (conn != null){ try { conn.close();//归还连接 } catch (SQLException e) { throw new RuntimeException(e); } } } public static void close(ResultSet rs, Statement stmt, Connection conn){ if (rs != null){ try { rs.close(); } catch (SQLException e) { throw new RuntimeException(e); } } if (stmt != null){ try { stmt.close(); } catch (SQLException e) { throw new RuntimeException(e); } } if (conn != null){ try { conn.close();//归还连接 } catch (SQLException e) { throw new RuntimeException(e); } } } /** * 获取连接池方法 */ public static DataSource getDataSource(){ return ds; } }
标签:RuntimeException,数据库,druid,连接池,close,new,throw,conn From: https://www.cnblogs.com/xuche/p/16803319.html