所有池基本思想都差不多,这个我一会儿再来进行描述,我先提一个类型 BOLB,这个数据类型可以用来存储图像、音频、视频、文档等任意二进制数据
1.在创建表时,可以使用下列语法指定BLOB列的类型:
CREATE TABLE table_name (
column_name BLOB
);
2.如果要指定特定长度的BLOB类型,可以使用以下语法:
CREATE TABLE table_name (
column_name BLOB(length)
);
结合IO流对数据库中的blob类型进行操作的案例
public class BlobDemo1 {
BaseDao dao = new BaseDao();
/**
* 添加文件
*
*/
@Test
public void test1() {
String sql = "insert into customers(name,email,birth, photo) values(?,?,?,?)";
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
FileInputStream in = null;
try {
conn = JdbcUtil.getConnection();
ps = conn.prepareStatement(sql);
ps.setString(1,"mickey");
ps.setString(2,"[email protected]");
ps.setDate(3,new Date(new java.util.Date().getTime()));
in = new FileInputStream("a.jpg");
ps.setBlob(4, in);
ps.executeUpdate(); //执行修改,返回语句影响的行数
} catch (Exception e) {
e.printStackTrace();
} finally {
JdbcUtil.closeResource(conn, ps, rs);
try {
in.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
/**
* 查询文件
*/
@Test
public void test2() {
String sql = "select id, name, photo from customers where id = ?";
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
InputStream in = null;
FileOutputStream out = null;
try {
conn = JdbcUtil.getConnection();
ps = conn.prepareStatement(sql);
ps.setInt(1, 20);
rs = ps.executeQuery();
if (rs.next()) {
System.out.println(rs.getInt("id"));
System.out.println(rs.getString(2));
//读取blob
Blob blob = rs.getBlob(3);
in = blob.getBinaryStream();
out = new FileOutputStream("a1.jpg");
int length = -1;
byte[] buffer = new byte[1024];
while ((length = in.read(buffer)) != -1) {
out.write(buffer, 0, length);
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
JdbcUtil.closeResource(conn, ps, rs);
try {
in.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
try {
out.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
/**
* 修改BLOB
*
*/
@Test
public void test3() {
String sql = "update customers set photo = ? where id=?";
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
FileInputStream in = null;
try {
conn = JdbcUtil.getConnection();
ps = conn.prepareStatement(sql);
ps.setInt(2, 20);
in = new FileInputStream("b.jpg");
ps.setBlob(1, in);
ps.executeUpdate(); //执行修改,返回语句影响的行数
} catch (Exception e) {
e.printStackTrace();
} finally {
JdbcUtil.closeResource(conn, ps, rs);
try {
in.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}
这里 JdbcUtil是我自己写的工具类 有需要可以看上一个博客。
当需要成批插入或者更新记录时,可以采用Java的批量更新机制,这一机制允许多条语句一次性提交给数据库批量处理。通常情况下比单独提交处理更有效率
JDBC的批量处理语句包括下面三个方法:
addBatch(String)
:添加需要批量处理的SQL语句或是参数;executeBatch()
:执行批量处理语句;clearBatch()
:清空缓存的数据public class BatchDemo1 {
@Test
public void test1() throws Exception {
long start = System.currentTimeMillis();
Connection conn = JdbcUtil.getConnection();
conn.setAutoCommit(false);//取消事务的自动提交,在后面需要用conn.commit()来手动提交
String sql = "insert into goods(name) values(?)";
PreparedStatement ps = conn.prepareStatement(sql);
for(int i = 1; i <= 200000; i++){
ps.setString(1, "name_" + i);
ps.executeUpdate();
}
conn.commit();
long end = System.currentTimeMillis();
System.out.println("花费的时间为:" + (end - start));//182340
JdbcUtil.closeResource(conn, ps, null);
}
@Test
public void test2() throws Exception {
long start = System.currentTimeMillis();
Connection conn = JdbcUtil.getConnection();
conn.setAutoCommit(false);
String sql = "insert into goods(name) values(?)";
PreparedStatement ps = conn.prepareStatement(sql);
for(int i = 1; i <= 200000; i++){
ps.setString(1, "name_" + i);
// ps.executeUpdate();
ps.addBatch(); //添加语句到Batch,攒sql语句
if (i % 100000 == 0) {
ps.executeBatch(); //每500个语句,批量执行一次
ps.clearBatch(); //清空批量
}
}
conn.commit();
long end = System.currentTimeMillis();
System.out.println("花费的时间为:" + (end - start));//82340
JdbcUtil.closeResource(conn, ps, null);
}
}
当不使用 addBatch(String)
方法时,每个 SQL 语句都会单独发送给数据库并执行。这意味着每次执行 SQL 语句都需要与数据库建立连接、发送请求、等待响应,并且涉及往返的网络通信。如果有大量的 SQL 语句需要执行,这将导致大量的网络开销和延迟。
相反,当你使用 addBatch(String)
方法时,你可以将多个 SQL 语句一起添加到批处理中。然后,通过执行批处理,所有的 SQL 语句都会一次性发送给数据库执行,减少了网络开销和延迟。这样可以显著提高性能,尤其是在需要执行大量 SQL 语句时。
虽然使用 addBatch(String) 方法可以提高性能,但也需要注意以下几点:
总之,使用 addBatch(String) 方法可以通过批处理方式一次性执行多个 SQL 语句,从而减少了与数据库的交互次数,提高了性能。但需要根据实际情况进行合理的优化和测试,以获得最佳性能。
1.初始连接数(Initial Pool Size)
:连接池在初始化时创建的初始连接数。
2.最小空闲连接数(Min Idle Connections)
:连接池中保持的最小空闲连接数。当连接池中的连接数低于此值时,连接池会创建新的连接以满足最小空闲连接数的要求。
3.最大连接数(Max Pool Size)
:连接池允许存在的最大连接数。当连接池中的连接已达到最大连接数时,后续的连接请求可能需要等待或被拒绝。
4.连接超时时间(Connection Timeout)
:获取连接的最大等待时间,超过该时间仍未获取到可用连接,则会抛出超时异常。
5.连接最大存活时间(Max Connection Lifetime)
:连接在连接池中的最大存活时间。当连接存活时间超过该阈值时,连接将会被关闭并从连接池中移除。
6.连接回收策略(Connection Reclaim Policy)
:确定何时对连接进行检查、验证和回收的策略。可以根据连接的空闲时间、使用次数等因素来触发回收操作。
7.验证查询(Validation Query)
:用于验证连接是否有效的 SQL 查询语句。连接池会定期执行该查询来检测连接是否可用。
8.连接验证超时时间(Validation Timeout)
:连接验证查询的超时时间,如果查询在该时间内未完成,则将认为连接无效。
9.连接重建策略(Connection Rebuild Policy)
:在连接池中出现故障的连接时,决定是否关闭该连接并重新创建新的连接。
JDBC 的数据库连接池使用 javax.sql.DataSource 来表示,DataSource 只是一个接口,该接口通常由服务器(Weblogic, WebSphere, Tomcat)提供实现,也有一些开源组织提供实现:
DataSource 通常被称为数据源,它包含连接池和连接池管理两个部分,习惯上也经常把 DataSource 称为连接池
DataSource用来取代DriverManager来获取Connection,获取速度快,同时可以大幅度提高数据库访问速度。
特别注意:
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.2.1</version>
</dependency>
其中,resources下的配置文件为:【c3p0-config.xml】
<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
<named-config name="helloc3p0">
<!-- 获取连接的4个基本信息 -->
<property name="user">root</property>
<property name="password">abc123</property>
<property name="jdbcUrl">jdbc:mysql:///test
<property name="driverClass">com.mysql.jdbc.Driver</property>
<!-- 涉及到数据库连接池的管理的相关属性的设置 -->
<!-- 若数据库中连接数不足时, 一次向数据库服务器申请多少个连接 -->
<property name="acquireIncrement">5</property>
<!-- 初始化数据库连接池时连接的数量 -->
<property name="initialPoolSize">5</property>
<!-- 数据库连接池中的最小的数据库连接数 -->
<property name="minPoolSize">5</property>
<!-- 数据库连接池中的最大的数据库连接数 -->
<property name="maxPoolSize">10</property>
<!-- C3P0 数据库连接池可以维护的 Statement 的个数 -->
<property name="maxStatements">20</property>
<!-- 每个连接同时可以使用的 Statement 对象的个数 -->
<property name="maxStatementsPerConnection">5</property>
</named-config>
</c3p0-config>
C3P0数据库连接池案例
public class C3p0Demo1 {
@Test
//使用C3P0数据库连接池的方式,获取数据库的连接:不推荐
public void test1() throws Exception{
ComboPooledDataSource cpds = new ComboPooledDataSource();
cpds.setDriverClass("com.mysql.jdbc.Driver");
cpds.setJdbcUrl("jdbc:mysql://localhost:3306/test");
cpds.setUser("root");
cpds.setPassword("123456");
// cpds.setMaxPoolSize(100);
Connection conn = cpds.getConnection();
System.out.println(conn);
}
@Test
public void test2() throws SQLException {
DataSource cpds = new ComboPooledDataSource("hellc3p0");
Connection conn = cpds.getConnection();
System.out.println(conn);
}
}
配置属性说明
属性 | 默认值 | 说明 |
---|---|---|
initialSize | 0 | 连接池启动时创建的初始化连接数量 |
maxActive | 8 | 连接池中可同时连接的最大的连接数 |
maxIdle | 8 | 连接池中最大的空闲的连接数,超过的空闲连接将被释放,如果设置为负数表示不限制 |
minIdle | 0 | 连接池中最小的空闲的连接数,低于这个数量会被创建新的连接。该参数越接近maxIdle,性能越好,因为连接的创建和销毁,都是需要消耗资源的;但是不能太大。 |
maxWait | 无限制 | 最大等待时间,当没有可用连接时,连接池等待连接释放的最大时间,超过该时间限制会抛出异常,如果设置-1表示无限等待 |
poolPreparedStatements | false | 开启池的Statement是否为preparedStatement |
maxOpenPreparedStatements | 无限制 | 开启池的preparedStatement 后的同时最大连接数 |
minEvictableIdleTimeMillis | 30分钟 | 连接池中连接,在时间段内一直空闲, 被逐出连接池的时间 |
removeAbandonedTimeout | 300 秒 | 超过时间限制,回收没有用(废弃)的连接 |
removeAbandoned | removeAbandoned false | 超过removeAbandonedTimeout时间后,是否进 行没用连接(废弃)的回收 |
pom.xml
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>dbcp</artifactId>
<version>6.0.29</version>
</dependency>
其中,resources下的配置文件为:【dbcp.properties】
driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql:///test
username=root
password=123456
initialSize=10
案例
public class DBCPTest {
//方式一:不推荐
@Test
public void testGetConnection() throws SQLException{
//创建了DBCP的数据库连接池
BasicDataSource source = new BasicDataSource();
//设置基本信息
source.setDriverClassName("com.mysql.jdbc.Driver");
source.setUrl("jdbc:mysql:///test");
source.setUsername("root");
source.setPassword("123456");
//还可以设置其他涉及数据库连接池管理的相关属性:
source.setInitialSize(10);
source.setMaxActive(10);
//。。。
Connection conn = source.getConnection();
System.out.println(conn);
}
//方式二:推荐:使用配置文件
@Test
public void testGetConnection1() throws Exception{
Properties pros = new Properties();
//方式1:
InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("dbcp.properties");
//方式2:
// FileInputStream is = new FileInputStream(new File("src/dbcp.properties"));
pros.load(is);
DataSource source = BasicDataSourceFactory.createDataSource(pros);
Connection conn = source.getConnection();
System.out.println(conn);
}
}
Druid是阿里巴巴开源平台上一个数据库连接池实现,它结合了C3P0、DBCP、Proxool等DB池的优点,同时加入了日志监控,可以很好的监控DB池连接和SQL的执行情况,可以说是针对监控而生的DB连接池,可以说是目前最好的连接池之一。
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.8</version>
</dependency>
其中,src下的配置文件为:【druid.properties】
url=jdbc:mysql:///test
username=root
password=123456
driverClassName=com.mysql.jdbc.Driver
initialSize=10
maxActive=10
案例
public class DruidTest {
@Test
public void test1() throws Exception{
Properties pros = new Properties();
InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("druid.properties");
pros.load(is);
DataSource source = DruidDataSourceFactory.createDataSource(pros);
Connection conn = source.getConnection();
System.out.println(conn);
}
}
Druid 是一个开源的数据库连接池,提供了大量可配置的参数用于优化和控制连接池的行为。以下是一些常见的 Druid 连接池的配置参数: