日期:2014-05-16 浏览次数:20552 次
?
#<!-- 初始化连接 -->
dataSource.initialSize=10
#<!-- 最大空闲连接 -->
dataSource.maxIdle=20
#<!-- 最小空闲连接 -->
dataSource.minIdle=5
#最大连接数量
dataSource.maxActive=50
#是否在自动回收超时连接的时候打印连接的超时错误
dataSource.logAbandoned=true
#是否自动回收超时连接
dataSource.removeAbandoned=true
#超时时间(以秒数为单位)
#设置超时时间有一个要注意的地方,超时时间=现在的时间-程序中创建Connection的时间,如果
maxActive比较大,比如超过100,那么removeAbandonedTimeout可以设置长一点比如180,也就是三分钟无响应的连接进行
回收,当然应用的不同设置长度也不同。
dataSource.removeAbandonedTimeout=180
#<!-- 超时等待时间以毫秒为单位 -->
#maxWait代表当Connection用尽了,多久之后进行回收丢失连接
dataSource.maxWait=1000
以下是我在连接控制中调用的方法:
??????? Properties dbProps=null;
//下面的读取配置文件可以根据实际的不同修改
??????? dbProps = ConfigProperties.getInstance().getProperties("jdbc.properties");
??????? try {
??????? String driveClassName = dbProps.getProperty("jdbc.driverClassName");
??????? String url = dbProps.getProperty("jdbc.url");
??????? String username = dbProps.getProperty("jdbc.username");
??????? String password = dbProps.getProperty("jdbc.password");
???????
??????? String initialSize = dbProps.getProperty("dataSource.initialSize");
??????? String minIdle = dbProps.getProperty("dataSource.minIdle");
??????? String maxIdle = dbProps.getProperty("dataSource.maxIdle");
??????? String maxWait = dbProps.getProperty("dataSource.maxWait");
??????? String maxActive = dbProps.getProperty("dataSource.maxActive");
????????? //是否在自动回收超时连接的时候打印连接的超时错误
?????? boolean logAbandoned = (Boolean.valueOf(dbProps.getProperty("dataSource.logAbandoned","false"))).booleanValue();
?????? //是否自动回收超时连接
?????? boolean removeAbandoned =
(Boolean.valueOf(dbProps.getProperty("dataSource.removeAbandoned","false"))).booleanValue();
?????? //超时时间(以秒数为单位)
?????? int removeAbandonedTimeout = Integer.parseInt(dbProps.getProperty("dataSource.removeAbandonedTimeout","300"));
??????
??????? dataSource = new BasicDataSource();
??????? dataSource.setDriverClassName(driveClassName);
??????? dataSource.setUrl(url);
??????? dataSource.setUsername(username);
??????? dataSource.setPassword(password);
??????? //初始化连接数
??????? if(initialSize!=null)
??????? ?? dataSource.setInitialSize(Integer.parseInt(initialSize));
???????
??????? //最小空闲连接
??????? if(minIdle!=null)
??????? ?? dataSource.setMinIdle(Integer.parseInt(minIdle));
??????? //最大空闲连接
??????? if(maxIdle!=null)
??????? ?? dataSource.setMaxIdle(Integer.parseInt(maxIdle));
???????
??????? //超时回收时间(以毫秒为单位)
??????? if(maxWait!=null)
??????? ?? dataSource.setMaxWait(Long.parseLong(maxWait));
???????
??????? //最大连接数
??????? if(maxActive!=null){
??????? ?? if(!maxActive.trim().equals("0"))
??????? ??? dataSource.setMaxActive(Integer.parseInt(maxActive));
??????? }
??????? System.out.println("logAbandoned="+logAbandoned);
?????????? dataSource.setLogAbandoned(logAbandoned);
??