jdbc连接池中c3p0的配置文件的详解以及在在java中如何使用




com.mysql.jdbc.Driver



root
1234

2

30

10

2

50



com.mysql.jdbc.Driver



root
1234
5
10
5
15
0
5


-------------------------------------------------------------------------------------------------------------------------------------------

 import com.mchange.v2.c3p0.ComboPooledDataSource; 

ComboPooledDataSource pool=new ComboPooledDataSource();
System.out.println(pool.getProperties());//这里可以输出mysql的用户名和密码;
for(int i=0;i<15;i++){
Connection con=pool.getConnection();
System.out.println(con.hashCode());//这里是输出连接的地址。
}

 

转载于:https://www.cnblogs.com/1314wamm/p/6091303.html

你可能感兴趣的:(jdbc连接池中c3p0的配置文件的详解以及在在java中如何使用)