c3p0连接池
---------------//硬编码方式 ------------------- @Test public void test(){ try { ComboPooledDataSource dataSource=new ComboPooledDataSource(); dataSource.setInitialPoolSize(3); //初始化连接数 dataSource.setMaxPoolSize(6); //最大连接数 dataSource.setMaxIdleTime(3000); //最大空闲时间 dataSource.setDriverClass("com.mysql.jdbd.Driver");//驱动 dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/day15");//数据库连接地址 dataSource.setUser("root");//用户名 dataSource.setPassword("root");//用户密码 } catch (PropertyVetoException e) { e.printStackTrace(); } } ---------------配置文件方式-------------推荐这种 //xml配置文件方式