关键代码:

c3p0配置:

<!-- 配置c3p0数据源 -->
<!-- 数据库连池最大连接数 -->
<property name="hibernate.c3p0.max_size">10</property>
<!-- 数据库连池最小连接数 -->
<property name="hibernate.c3p0.min_size">5</property>
<!-- 当数据库连接池中的连接耗尽时,同一时刻获取多少个数据库连接。例如一次要多少个连接,要5个还是10个 -->
<property name="hibernate.c3p0.acquire_increment">2</property>
<!-- 数据库连接池中对象在多少时间没有使用过后,就应该被消耗,单位为毫秒-->
<property name="hibernate.c3p0.timeout">2000</property>
<!-- 多长检测一次连接池的连接是否超时,如果超时了就关掉。也就是超过了hibernate.c3p0.timeout的连接。
	这是一个线程执行的任务,因为数据库连接不能自己断开,要通过外力处理。单位为毫秒 -->
<property name="hibernate.c3p0.idle_test_period">2000</property>
<!-- 缓存Statement对象的数量 -->
<property name="hibernate.c3p0.max_statements">10</property>

其它配置:

<!-- 如果一次要查询10000条数据,在oracle jdbc中不会一次性加载到内存的
	而是分次加载。这样可以减少无谓的内存消耗。一般取100合适
	不过mysql不支持 -->
<property name="hibernate.jdbc.fetch_size">100</property>

<!-- 批量操作,更新,删除的批次大小。
	针对oracle数据库,一般取30合适。mysql不支持 -->
<property name="hibernate.jdbc.batch_size">30</property>


代码片段:

hibernate.cfg.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
		"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
		"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
	<session-factory>
    	<!-- 连接数据库的基本信息 -->
		<property name="hibernate.connection.username">root</property>
		<property name="hibernate.connection.password">111111</property>
		<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
		<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test?useUnicode=true&amp;characterEncoding=utf-8&amp;useSSL=false&amp;useLegacyDatetimeCode=false&amp;serverTimezone=Australia/Melbourne&amp;</property>

		<!-- hibernate 的基本信息 -->
		<!-- hibernate 所使用的数据库方言 -->
		<property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>

		<!-- 执行操作时是否在控制台打印sql -->
		<property name="show_sql">true</property>

		<!-- 是否对sql进行格式化 -->
		<property name="format_sql">true</property>

		<!-- 指定自动生成数据表策略 -->
		<property name="hbm2ddl.auto">update</property>
		
		<!-- 配置c3p0数据源 -->
		<!-- 数据库连池最大连接数 -->
		<property name="hibernate.c3p0.max_size">10</property>
		<!-- 数据库连池最小连接数 -->
		<property name="hibernate.c3p0.min_size">5</property>
		<!-- 当数据库连接池中的连接耗尽时,同一时刻获取多少个数据库连接。例如一次要多少个连接,要5个还是10个 -->
		<property name="hibernate.c3p0.acquire_increment">2</property>
		<!-- 数据库连接池中对象在多少时间没有使用过后,就应该被消耗,单位为毫秒-->
		<property name="hibernate.c3p0.timeout">2000</property>
		<!-- 多长检测一次连接池的连接是否超时,如果超时了就关掉。也就是超过了hibernate.c3p0.timeout的连接。
			这是一个线程执行的任务,因为数据库连接不能自己断开,要通过外力处理。单位为毫秒 -->
		<property name="hibernate.c3p0.idle_test_period">2000</property>
		<!-- 缓存Statement对象的数量 -->
		<property name="hibernate.c3p0.max_statements">10</property>

		<!-- 如果一次要查询10000条数据,在oracle jdbc中不会一次性加载到内存的
			而是分次加载。这样可以减少无谓的内存消耗。一般取100合适
			不过mysql不支持
		 -->
		<property name="hibernate.jdbc.fetch_size">100</property>

		<!-- 批量操作,更新,删除的批次大小。
			针对oracle数据库,一般取30合适。mysql不支持
			 -->
		<property name="hibernate.jdbc.batch_size">30</property>

		<!-- 指定关联的 .hbm.xml文件 -->
		<mapping resource="com/shuoeasy/test/News.hbm.xml" />
	</session-factory>
</hibernate-configuration>


pom.xml一定要使用hibernate-c3p0,使用原生c3p0会报错

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<groupId>com.shuoeasy</groupId>
	<artifactId>test</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>test</name>
	<url>http://maven.apache.org</url>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
		<maven.compiler.target>1.8</maven.compiler.target>
		<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<!-- <version>5.2.0.Final</version> -->
			<version>4.3.11.Final</version>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>6.0.2</version>
		</dependency>
		<!-- <dependency>
			<groupId>c3p0</groupId>
			<artifactId>c3p0</artifactId>
			<version>0.9.1.2</version>
		</dependency> -->
		<!-- 注意,用的是hibernate-c3p0 -->
		<dependency>
		    <groupId>org.hibernate</groupId>
		    <artifactId>hibernate-c3p0</artifactId>
		    <version>4.3.11.Final</version>
		</dependency>
	</dependencies>
</project>

AppTest.java 测试是否为c3p0连接:

package com.shuoeasy.test;

import java.sql.Connection;
import java.sql.SQLException;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;
import org.hibernate.jdbc.Work;
import org.hibernate.service.ServiceRegistry;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;


/**
 * Unit test for simple App.
 */
public class AppTest {
	Session session;
	SessionFactory sf;

	@Before
	public void init() {

		Configuration conf = new Configuration().configure();

		ServiceRegistry sr = new StandardServiceRegistryBuilder().applySettings(conf.getProperties()).build();

		sf = conf.buildSessionFactory((org.hibernate.service.ServiceRegistry) sr);

		session = sf.openSession();

		session.beginTransaction();
		System.out.println("init");
	}

	@After
	public void destory() {
		session.getTransaction().commit();

		session.close();

		sf.close();
		System.out.println("dectory");
	}

	/**
	 * 查看是否为c3p0的数据库连接
	 */
	@Test
	public void test() {
		
		session.doWork(new Work() {
			
			@Override
			public void execute(Connection connection) throws SQLException {
				// TODO Auto-generated method stub
				System.out.println(connection);// 输出:com.mchange.v2.c3p0.impl.NewProxyConnection@5965be2d
			}
		});
	}
	
}


你可能感兴趣的文章