`
conkeyn
  • 浏览: 1524675 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

JavaGGDataSource

阅读更多

d

转自:来源忘记了。

 

/**
 * JavaGGDataSource.java 2011-3-4 上午09:21:05
 */
package test.datasource;

import java.io.PrintWriter;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.sql.Connection;
import java.sql.Driver;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.locks.ReentrantLock;

import javax.sql.DataSource;

/**
 * @author linzq
 * 
 */
public class JavaGGDataSource implements DataSource
{

    // 连接队列

    private ConcurrentLinkedQueue<_Connection> connQueue    = new ConcurrentLinkedQueue<_Connection>();

    // 存放所有连接容器

    private List<_Connection>                  conns        = new ArrayList<_Connection>();
    private Driver                             driver       = null;
    private String                             jdbcUrl      = null;
    private String                             user         = null;
    private String                             password     = null;
    // -1为不限制连接数
    private int                                maxActive    = -1;
    private String                             driverClass  = null;
    // 默认为4小时,即4小时没有任何sql操作就把所有连接重新建立连接
    private int                                timeout      = 1000 * 60 * 60 * 4;
    private AtomicLong                         lastCheckout = new AtomicLong(
                                                                    System
                                                                            .currentTimeMillis());
    private AtomicInteger                      connCount    = new AtomicInteger();
    // 线程锁,主要用于新建连接和清空连接时
    private ReentrantLock                      lock         = new ReentrantLock();

    public void closeAllConnection()
    {

    }

    /**
     * 
     * 归还连接给连接池
     * 
     * 
     * 
     * @param conn
     * 
     *@date 2009-8-13
     * 
     *@author eric.chan
     */

    public void offerConnection(_Connection conn)
    {
        connQueue.offer(conn);
    }

    @Override
    public Connection getConnection() throws SQLException
    {
        return getConnection(user, password);

    }

    /**
     * 
     * 从池中得到连接,如果池中没有连接,则建立新的sql连接
     * 
     * 
     * 
     * @param username
     * 
     * @param password
     * 
     * @author eric.chan
     */

    @Override
    public Connection getConnection(String username, String password)

    throws SQLException
    {
        checkTimeout();
        _Connection conn = connQueue.poll();
        if (conn == null)
        {
            if (maxActive > 0 && connCount.get() >= maxActive)
            {
                for (;;)
                {
                    // 采用自旋方法 从已满的池中得到一个连接
                    conn = connQueue.poll();
                    if (conn != null)
                        break;
                    else
                        continue;
                }
            }
            lock.lock();
            try
            {
                if (maxActive > 0 && connCount.get() >= maxActive)
                {
                    // 处理并发问题
                    return getConnection(username, password);
                }
                Properties info = new Properties();
                info.put("user", username);
                info.put("password", password);
                Connection conn1 = loadDriver().connect(jdbcUrl, info);
                conn = new _Connection(conn1, this);
                int c = connCount.incrementAndGet();// 当前连接数加1
                conns.add(conn);
                System.out.println("info : init no. " + c + " connectioned");
            } finally
            {
                lock.unlock();
            }
        }
        lastCheckout.getAndSet(System.currentTimeMillis());
        return conn.getConnection();
    }

    /**
     * 
     * 检查最后一次的连接时间
     * 
     * 
     * 
     * @throws SQLException
     * 
     *@date 2009-8-13
     * 
     *@author eric.chan
     */

    private void checkTimeout() throws SQLException
    {

        long now = System.currentTimeMillis();
        long lt = lastCheckout.get();
        if ((now - lt) > timeout)
        {
            _Connection conn = null;
            lock.lock();
            try
            {
                if (connCount.get() == 0)
                    return;
                while ((conn = connQueue.poll()) != null)
                {
                    System.out.println("connection " + conn + " close ");
                    conn.close();
                    conn = null;
                }
                for (_Connection con : conns)
                {
                    con.close();
                }
                conns.clear();
                System.out.println("info : reset all connections");
                // 重置连接数计数器
                connCount.getAndSet(0);
                lastCheckout.getAndSet(System.currentTimeMillis());
            } finally
            {
                lock.unlock();
            }
        }
    }

    /**
     * 
     * 
     * 
     * @return
     * 
     *@date 2009-8-13
     * 
     *@author eric.chan
     */

    private Driver loadDriver()
    {
        if (driver == null)
        {
            try
            {
                driver = (Driver) Class.forName(driverClass).newInstance();
            } catch (ClassNotFoundException e)
            {
                System.out.println("error : can not find driver class " +
                        driverClass);
            } catch (Exception e)
            {
                e.printStackTrace();
            }
        }
        return driver;
    }

    @Override
    public PrintWriter getLogWriter() throws SQLException
    {
        return null;
    }

    @Override
    public int getLoginTimeout() throws SQLException
    {
        return 0;
    }

    @Override
    public void setLogWriter(PrintWriter out) throws SQLException
    {
    }

    @Override
    public void setLoginTimeout(int seconds) throws SQLException
    {
    }

    @Override
    public boolean isWrapperFor(Class iface) throws SQLException
    {
        throw new SQLException("no Implemented isWrapperFor method");
    }

    @Override
    public <T> T unwrap(Class<T> iface) throws SQLException
    {
        throw new SQLException("no Implemented unwrap method");
    }

    public String getJdbcUrl()
    {
        return jdbcUrl;
    }

    public void setJdbcUrl(String jdbcUrl)
    {
        this.jdbcUrl = jdbcUrl;
    }

    public String getUsername()
    {
        return user;
    }

    public void setUsername(String user)
    {
        this.user = user;
    }

    public String getPassword()
    {
        return password;
    }

    public void setPassword(String password)
    {
        this.password = password;
    }

    public String getDriverClass()
    {
        return driverClass;
    }

    public void setDriverClass(String driverClass)
    {
        this.driverClass = driverClass;
    }

    public int getTimeout()
    {
        return timeout;
    }

    public void setTimeout(int timeout)
    {
        this.timeout = timeout * 1000;
    }

    public void setMaxActive(int maxActive)
    {
        this.maxActive = maxActive;
    }

    public int getMaxActive()
    {
        return maxActive;
    }

}

/**
 * 数据连接的自封装 ,是java.sql.Connection的一个钩子,主要是处理close方法
 * 
 * @author linzq
 * 
 */
class _Connection implements InvocationHandler
{

    private final static String    CLOSE_METHOD_NAME = "close";

    private final Connection       conn;

    private final JavaGGDataSource ds;

    _Connection(Connection conn, JavaGGDataSource ds)
    {
        this.conn = conn;
        this.ds = ds;
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args)
            throws Throwable
    {
        Object obj = null;
        // 判断是否调用了close的方法,如果调用close方法则把连接置为无用状态
        if (CLOSE_METHOD_NAME.equals(method.getName()))
        {
            // 归还连接给连接池
            ds.offerConnection(this);
        } else
        {
            // 运行非close的方法
            obj = method.invoke(conn, args);
        }
        return obj;
    }

    public Connection getConnection()
    {
        // 返回数据库连接conn的接管类,以便截住close方法
        Connection conn2 = (Connection) Proxy.newProxyInstance(conn.getClass()
                .getClassLoader(), new Class[] { Connection.class }, this);
        return conn2;
    }

    public void close() throws SQLException
    {
        // 调用真正的close方法,一但调用此方法就直接关闭连接
        if (conn != null && !conn.isClosed())
            conn.close();
    }
}
 
/**
 * TestGG.java 2011-3-4 上午10:02:14
 */
package test.datasource;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

/**
 * @author linzq
 * 
 */
public class TestGG
{

    /**
     * @param args
     */
    public static void main(String[] args)
    {
        JavaGGDataSource ds = new JavaGGDataSource();
        ds.setDriverClass("com.mysql.jdbc.Driver");
        ds.setJdbcUrl("jdbc:mysql://localhost:3306/test");
        ds.setUsername("root");
        ds.setPassword("123456");
        ds.setTimeout(300);
        // ds.setMaxActive(60);
        for (int i = 0; i < 20; i++)
        {
            new GG(ds).start();
        }
    }

    static class GG extends Thread
    {
        JavaGGDataSource ds = null;
        long             l  = System.currentTimeMillis();

        public GG(JavaGGDataSource ds)
        {
            this.ds = ds;
        }

        static final String sql       = "insert into testgg(col1,cols) values (?,?)";
        static final String selectsql = "select * from testgg where id=?";

        public void run()
        {
            for (int t = 0; t < 10000; t++)
            {
                Connection conn = null;
                try
                {
                    conn = ds.getConnection();
                    PreparedStatement ps = conn.prepareStatement(sql);
                    // 以下为insert
                    ps.setInt(1, 133664);
                    ps.setString(2, "ddd");
                    ps.executeUpdate();
                    ResultSet rs = ps.getGeneratedKeys();
                    // 以下为select
                    // 取得自增长ID
                    ps = conn.prepareStatement(selectsql);
                    if (rs.next())
                    {
                        // System.out.println(rs);
                        ps.setInt(1, rs.getInt("GENERATED_KEY"));// 表的字段名字也可以用字段下标值
                    }
                    rs = ps.executeQuery();
                    while (rs.next())
                    {
                        rs.getInt("id");
                        rs.getInt("col1");
                    }
                    rs.close();
                    ps.close();
                } catch (SQLException e)
                {
                    e.printStackTrace();
                } finally
                {
                    try
                    {
                        if (conn != null)
                        {
                            // ds.offerConnection(conn);
                            conn.close();
                        }
                    } catch (Exception e)
                    {
                        e.printStackTrace();
                    }
                }
            }
            System.out.println(System.currentTimeMillis() - l);
        }
    }
}

  数据库表结构:

CREATE TABLE `testgg` (
  `id` int(11) NOT NULL auto_increment,
  `col1` int(11) default NULL,
  `cols` varchar(200) default NULL,
  PRIMARY KEY  (`id`)
)
 

d

分享到:
评论

相关推荐

    iOS版微信抢红包Tweak.zip小程序

    iOS版微信抢红包Tweak.zip小程序

    毕业设计&课设_篮球爱好者网站,含前后台管理功能及多种篮球相关内容展示.zip

    该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    基于springboot社区停车信息管理系统.zip

    基于springboot社区停车信息管理系统.zip

    基于springboot南皮站化验室管理系统源码数据库文档.zip

    基于springboot南皮站化验室管理系统源码数据库文档.zip

    重磅,更新!!!上市公司全要素生产率TFP数据及测算方法(OL、FE、LP、OP、GMM)(2000-2023年)

    ## 数据指标说明 全要素生产率(TFP)也可以称之为系统生产率。指生产单位(主要为企业)作为系统中的各个要素的综合生产率,以区别于要素生产率(如技术生产率)。测算公式为:全要素生产率=产出总量/全部资源投入量。 数据测算:包含OL、FE、LP、OP、GMM共五种TFP测算方法!数据结果包括excel和dta格式,其中重要指标包括证券代码,固定资产净额,营业总收入,营业收入,营业成本,销售费用,管理费用,财务费用,购建固定资产无形资产和其他长期资产支付的现金,支付给职工以及为职工支付的现金,员工人数,折旧摊销,行业代码,上市日期,AB股交叉码,退市日期,年末是否ST或PT等变量指标分析。文件包括计算方法说明及原始数据和代码。 数据名称:上市公司全要素生产率TFP数据及测算方法(OL、FE、LP、OP、GMM) 数据年份:2000-2023年 数据指标:证券代码、year、TFP_OLS、TFP_FE、TFP_LP1、TFP_OP、TFP_OPacf、TFP_GMM

    多种编程语言下算法实现资源汇总

    内容概要:本文详细总结了多种编程语言下常用的算法实现资源,涵盖Python、C++、Java等流行编程语言及其相关的开源平台、在线课程和权威书籍。对于每种语言而言,均提供了具体资源列表,包括开源项目、标准库支持、在线课程及专业书籍推荐。 适合人群:适用于所有希望深入研究并提高特定编程语言算法能力的学习者,无论是编程新手还是有一定经验的技术人员。 使用场景及目标:帮助开发者快速定位到合适的算法学习资料,无论是出于个人兴趣自学、面试准备或是实际工作中遇到的具体算法问题,都能找到合适的解决方案。 其他说明:文中提及多个在线学习平台和社区网站,不仅限于某一特定语言,对于跨学科或多元化技能培养也具有很高的参考价值。

    基于springboot的交通旅游订票系统源码数据库文档.zip

    基于springboot的交通旅游订票系统源码数据库文档.zip

    GO语言教程:基础知识与并发编程

    内容概要:本文档是一份详细的GO语言教程,涵盖了Go语言的基础语法、数据类型、控制结构、函数、结构体、接口以及并发编程等多个方面。主要内容包括Go语言的基本概念和历史背景、环境配置、基本语法(如变量、数据类型、控制结构)、函数定义与调用、高级特性(如闭包、可变参数)、自定义数据类型(如结构体、接口)以及并发编程(如goroutine、channel、select)等内容。每部分内容都附有具体的代码示例,帮助读者理解和掌握相关知识点。 适合人群:具备一定编程基础的开发者,尤其是希望深入学习和应用Go语言的技术人员。 使用场景及目标:①初学者通过本教程快速入门Go语言;②有一定经验的开发者系统复习和完善Go语言知识;③实际项目开发中利用Go语言解决高性能、高并发的编程问题。 阅读建议:本文档全面介绍了Go语言的各项基础知识和技术细节,建议按章节顺序逐步学习,通过动手实践代码示例加深理解。对于复杂的概念和技术点,可以通过查阅更多资料或进行深入研究来巩固知识。

    time_series_at_a_point.ipynb

    GEE训练教程

    memcached笔记资料

    memcached笔记资料,配套视频:https://www.bilibili.com/list/474327672?sid=4486766&spm_id_from=333.999.0.0&desc=1

    基于springboot校内跑腿业务系统源码数据库文档.zip

    基于springboot校内跑腿业务系统源码数据库文档.zip

    计算机控制光感自动窗帘控制系统设计.doc

    计算机控制光感自动窗帘控制系统设计.doc

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot+Vue的美容店信息管理系统源码数据库文档.zip

    基于SpringBoot+Vue的美容店信息管理系统源码数据库文档.zip

    基于springboot程序设计基础课程辅助教学系统源码数据库文档.zip

    基于springboot程序设计基础课程辅助教学系统源码数据库文档.zip

    原生JS实现斗地主小游戏源码.zip

    这是一个原生的JS网页版斗地主小游戏,代码注释全。带有斗地主游戏基本的地主、选牌、提示、出牌、倒计时等功能。简单好玩,欢迎下载

    基于springboot亚运会志愿者管理系统源码数据库文档.zip

    基于springboot亚运会志愿者管理系统源码数据库文档.zip

    毕业设计&课设_含多功能的远程控制工具集(已停维护),含命令行、文件管理、桌面功能.zip

    该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    Sen2_NDVI_Max.txt

    GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载

    基于springboot家校合作平台源码数据库文档.zip

    基于springboot家校合作平台源码数据库文档.zip

Global site tag (gtag.js) - Google Analytics