20 C3P0的使用

版权声明:版权声明:本文为博主原创文章,未经博主允许不得转载,博客地址:http://blog.csdn.net/xpala https://blog.csdn.net/xpala/article/details/89074489

使用步骤:

1、添加cap0-0.9.1l2  jar包 ,之前DBCP的不要了

2、编写配置文件c3p0-config.xml,放在classpath中,或classes目录中,也就是 src目录中

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/2002/xmlspec/dtd/2.10/xmlspec.dtd">
<c3p0-config>
  <default-config>
	<property name="driverClass">com.mysql.jdbc.Driver</property>
	<property name="jdbcUrl">jdbc:mysql://localhost:3306/paper</property>
	<property name="user">root</property>
	<property name="password">123456</property>
    <property name="initialPoolSize">10</property>
    <property name="maxIdleTime">30</property>
    <property name="maxPoolSize">100</property>
    <property name="minPoolSize">10</property>
  </default-config>
</c3p0-config>

3.编写工具类

public class C3P0Utils {
	
	private static DataSource ds= new ComboPooledDataSource();
	

	
	public static Connection getConnection() throws Exception{
		return ds.getConnection();
	}

猜你喜欢

转载自blog.csdn.net/xpala/article/details/89074489
今日推荐