使用配置文件properties进行连接池对象DataSource的创建
如下:
1 public class CP30Util { 2 private static DataSource dataSource; 3 //使用静态代码块,使驱动在调用工具类时就被加载,且只加载一次 4 static { 5 try { 6 //使用工厂方法"Using the DataSouces factory class"创建DataSource连接池对象 7 dataSource= DataSources.pooledDataSource(DataSources.unpooledDataSource()); 8 } catch (Exception e) { 9 e.printStackTrace(); 10 } 11 }
1 /* 2 注:CP30中properties有指定的格式,按要求进行配置文件创建后,无序在程序中在加载文件,会自动加载,参看友链:http://haoran-10.iteye.com/blog/1753332 3 */
时间: 2024-10-04 18:24:01