目录
这只是一个简单的durid的Demo,不包含spring和后台监控!!!
项目结构
这里mysql的jar包和durid的两个用户库必须存在,否则不会成功。
durid的jar包和简单配置文件大家可以去我的百度云盘下载。
druid.properties文件配置
druid.properties文件放在src目录下,名字可以任意。driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test
username=root
password=root
#初始的连接数
initialSize=3
#最大连接数
maxActive=10
#最大等待时间
maxWait=3000
#最小空闲连接数
minIdle=2
书写JDBCUtil工具类
package utils;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import javax.sql.DataSource;
import com.alibaba.druid.pool.DruidDataSourceFactory;
/**
* @author jfr
* Druid连接池的工具类
*/
public class JDBCUtil_druid {
private static DataSource ds;
static {
try {
// 加载配置文件
Properties pro = new Properties();
pro.load(JDBCUtil_druid.class.getClassLoader().getResourceAsStream("druid.properties"));
ds = DruidDataSourceFactory.createDataSource(pro);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// 获取连接池
public static DataSource getDataSource() {
return ds;
}
//获取连接的方法
public static Connection getConnection() throws SQLException {
return ds.getConnection();
}
//归还连接
public static void close(Statement stmt, Connection conn) {
close(null, stmt, conn);
}
public static void close(ResultSet rs, Statement stmt, Connection conn) {
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (stmt != null) {
try {
stmt.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static void close(PreparedStatement pstmt, Connection conn) {
close(null, pstmt, conn);
}
public static void close(ResultSet rs, PreparedStatement pstmt, Connection conn) {
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (pstmt != null) {
try {
pstmt.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
数据库连接测试
Demo1:
package druid;
import java.sql.Connection;
import utils.JDBCUtil_druid;
/**
* @author jfr
*
*/
public class druidDemo {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
for (int i = 0; i <= 10; i++) {
Connection conn = JDBCUtil_druid.getConnection();
System.out.println(i + ":" + conn);
if (i == 3) {
conn.close();
}
}
}
}
出现上图最上方那些信息说明,证明我们的durid配置成功。
这是一个简单的测试,用来获取每一个连接的信息,其中红框圈出来的值相同,
我们以前调用close()方法是关闭了连接,而在线程池中close()方法是把使用完的连接归还给连接池以便下一个申请调用。
Demo2:
package druid;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import utils.JDBCUtil_druid;
public class druid_select_test {
public static void main(String[] args) throws Exception {
Connection conn = null;
Statement stmt = null;
String id = null;
String name = null;
String sex = null;
conn = JDBCUtil_druid.getConnection();
stmt = conn.createStatement();
String sql = "select * from user";
ResultSet rs = stmt.executeQuery(sql);
// 表查询
while (rs.next()) {
id = rs.getString("id");
name = rs.getString("username");
sex = rs.getString("sex");
if (id == null) {
System.out.println("表为空!");
} else {
System.out.println("id = " + id + "," + "name = " + name + ", " + "sex= " + sex);
}
}
}
}
这是一个基于durid的简单查表,使用JDBCUtil工具类进行durid的连接并测试查表。
不包含spring和后台访问监控!!!