快速业务通道

数据库连接池Java实现小结 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23

FactoryMangeThread.java

/* * Created on 2003-5-13 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package scut.ailab.connectionpool; /** * @author youyongming * */ //连接池调度线程 public class FactoryMangeThread implements Runnable { ConnectionFactory cf = null; long delay = 1000; public FactoryMangeThread(ConnectionFactory obj) {   cf = obj; } /* (non-Javadoc)   * @see java.lang.Runnable#run()   */ public void run() {   while(true){   try{    Thread.sleep(delay);   }   catch(InterruptedException e){}   System.out.println("eeeee");   //判断是否已经关闭了工厂,那就退出监听   if (cf.isCreate())    cf.schedule();   else    System.exit(1);   } } }

数据库连接池Java实现小结(8)

时间:2010-12-14

FactoryParam.java

/* * Created on 2003-5-13 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package scut.ailab.connectionpool; /** * @author youyongming * */ //连接池工厂参数 public class FactoryParam { //最大连接数 private int MaxConnectionCount = 4; //最小连接数 private int MinConnectionCount = 2; //回收策略 private int ManageType = 0; public FactoryParam(){ } /**   * 构造连接池工厂参数的对象   * @param max最大连接数   * @param min最小连接数   * @param type管理策略   */ public FactoryParam(int max, int min, int type) {   this.ManageType = type;   this.MaxConnectionCount = max;   this.MinConnectionCount = min; } /**   * 设置最大的连接数   * @param value   */ public void setMaxConn(int value) {   this.MaxConnectionCount = value; } /**   * 获取最大连接数   * @return   */ public int getMaxConn() {   return this.MaxConnectionCount; } /**   * 设置最小连接数   * @param value   */ public void setMinConn(int value) {   this.MinConnectionCount = value; } /**   * 获取最小连接数   * @return   */ public int getMinConn() {   return this.MinConnectionCount; } public int getType() {   return this.ManageType; } }

数据库连接池Java实现小结(9)

时间:2010-12-14

testmypool.java

/* * Created on 2003-5-13 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package scut.ailab.connectionpool; /** * @author youyongming * */ import java.sql.*; public class testmypool { public void test1() {   String user = "DevTeam";   String password = "DevTeam";   String driver = "sun.jdbc.odbc.JdbcOdbcDriver";   String url = "jdbc:odbc:gfqh2";   ConnectionParam param = new ConnectionParam(driver,url,user,password);   ConnectionFactory cf = null;//new ConnectionFactory(param, new FactoryParam());   try{   cf = new ConnectionFactory(param,new FactoryParam());   Connection conn1 = cf.getFreeConnection();   Connection conn2 = cf.getFreeConnection();   Connection conn3 = cf.getFreeConnection();   Statement stmt = conn1.cre

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号